You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
Currently, the OutParameter get method param is mandatory, this can be made optional since the type description can be inferred from the assigned return type.
public type OutParameter object {
# Parses returned Char SQL value to ballerina value.
#
# + typeDesc - Type description of the data that need to be converted
# + return - The converted ballerina value or Error
public isolated function get(typedesc<anydata> typeDesc = <>) returns typeDesc|Error;
};
The text was updated successfully, but these errors were encountered:
niveathika
changed the title
Make OutParameter get method typeDesc parameter defaultable
Make OutParameter get method typeDesc parameter optional
Nov 15, 2021
Description:
Currently, the OutParameter get method param is mandatory, this can be made optional since the type description can be inferred from the assigned return type.
The text was updated successfully, but these errors were encountered: