cmdline v1.3.4 (2024-09-24T03:22:01Z)
Dub
Repo
isOptionValueType
cmdline
option
a trait func for checking whether a type is option inner value (
OptionValueSeq
)
template
isOptionValueType (
T
) {
static if
(
isDynamicArray!T && !allSameType!(T, string)
)
enum
bool
isOptionValueType
;
static if
(!(
isDynamicArray!T && !allSameType!(T, string)
))
enum
bool
isOptionValueType
;
}
Members
Variables
isOptionValueType
enum
bool
isOptionValueType
;
Undocumented in source.
isOptionValueType
enum
bool
isOptionValueType
;
Undocumented in source.
Meta
Source
See Implementation
cmdline
option
aliases
OptionArrayValue
OptionBaseValue
OptionNullable
OptionValueSeq
OptionVariant
ParseArgFn
ProcessArgFn
ProcessReduceFn
classes
BoolOption
NegateOption
Option
ValueOption
VariadicOption
enums
Source
functions
_camelCase
createNOption
createNegateOption
createOption
splitOptionFlags
testType
structs
OptionFlags
templates
isBaseOptionValueType
isOptionValueType
a trait func for checking whether a type is option inner value (OptionValueSeq)