Fix: null defaults, logical envvar parsing #34
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
release
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
dgkf/options!34
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "33-null-defaults"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes #33
Closes #32
Fixed
define_optionswhen using aNULLdefault value. Previously,the
NULLvalue would not be recognized and would silently ignore theoption definition. (@dgkf #34)
Fixed
envvar_is.logical(and thereby,envvar_is_true,envvar_is_false),leveraging
as.logicalinternally to make the parsing from strings alignmore closely to what one may expect in R. Notably, all lowercase values
trueandfalsewill now be recognized as their respective logical values.(@dgkf #34)