We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Booleans are currently configured to output as the text strings true or false.
true
false
Add a new configuration parameter to CSVEncoderConfiguration to support different styles of encoding:
CSVEncoderConfiguration
.trueFalse
.trueFalseUppercase
TRUE
FALSE
.yesNo
yes
no
.yesNoUppercase
YES
NO
.integer
1
0
Expected work to do:
BoolEncodingStrategy
boolEncodingStrategy
CSVEncoderConguration
CSVEncoderConfiguration.default
Bool.encode()
The text was updated successfully, but these errors were encountered:
export
scottmatthewman
Successfully merging a pull request may close this issue.
Booleans are currently configured to output as the text strings
true
orfalse
.Add a new configuration parameter to
CSVEncoderConfiguration
to support different styles of encoding:.trueFalse
(default)true
false
.trueFalseUppercase
TRUE
FALSE
.yesNo
yes
no
.yesNoUppercase
YES
NO
.integer
1
0
Expected work to do:
BoolEncodingStrategy
enum toCSVEncoderConfiguration
with all options documentedboolEncodingStrategy
property toCSVEncoderConguration
CSVEncoderConfiguration.default
to use the default [^1]Bool.encode()
method to amend output based on configuration strategyThe text was updated successfully, but these errors were encountered: