ae ~master (2024-01-05T13:09:51Z)
Home
Dub
Repo
findValueOfTypeInTuple
ae
utils
meta
Returns the first value in
T
of type
X
.
template
findValueOfTypeInTuple (
X
T
...
) {
static if
(!(
T.length == 0
))
static if
(
is(typeof(T[0]) : X)
)
enum
findValueOfTypeInTuple
;
static if
(!(
T.length == 0
))
static if
(!(
is(typeof(T[0]) : X)
))
enum
findValueOfTypeInTuple
;
}
Members
Manifest constants
findValueOfTypeInTuple
enum
findValueOfTypeInTuple
;
Undocumented in source.
findValueOfTypeInTuple
enum
findValueOfTypeInTuple
;
Undocumented in source.
Meta
Source
See Implementation
ae
utils
meta
modules
args
binding
binding_v1
caps
chain
misc
proxy
rcclass
reference
tuplerange
x
aliases
ArrayToTuple
BoxedVoid
EnumLength
ExpandNumericType
GenerateContructorProxies
HAVE_UDA
I
IsDebug
RangeTuple
ValueTuple
isHomogenous
functions
and
boxVoid
classInit
has
identity
or
prog1
progn
tupleMap
unboxVoid
voidStruct
manifest constants
isDebug
mixin templates
FieldList
GenerateConstructorProxies
properties
enumIota
isHomogeneous
singleton
structFields
static functions
findParameter
structs
Has
StructFromParams
templates
AllMembers
BoxVoid
CTIterate
ParameterNames
ResizeNumericType
SignedBitsType
TryExpandNumericType
UnsignedBitsType
_rangeTupleImpl
apply
arrayToTuple
enumLength
expand
findValueOfTypeInTuple
functor
getAttribute
hasAttribute
isValueOfTypeInTuple
isVersion
rangeTuple
stringofArray
structFun
thisOf
valueBits
valueTuple
variables
haveCommonType
Returns the first value in T of type X.