ae v0.0.3053 (2021-06-01T17:26:23Z)
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
BoxedVoid
EnumLength
ExpandNumericType
GenerateContructorProxies
HAVE_UDA
I
IsDebug
isHomogenous
functions
and
boxVoid
classInit
identity
or
prog1
progn
unboxVoid
manifest constants
isDebug
mixin templates
FieldList
GenerateConstructorProxies
properties
enumIota
isHomogeneous
singleton
structFields
static functions
findParameter
structs
StructFromParams
templates
ArrayToTuple
BoxVoid
CTIterate
RangeTuple
ResizeNumericType
SignedBitsType
TryExpandNumericType
UnsignedBitsType
ValueTuple
_GenFieldList
_RangeTupleImpl
apply
enumLength
expand
findValueOfTypeInTuple
functor
getAttribute
hasAttribute
isValueOfTypeInTuple
isVersion
stringofArray
structFun
thisOf
valueBits
variables
haveCommonType
Returns the first value in T of type X.