Val
Val{c}
Create a "value type" out of c
, which must be an isbits
value. The intent of this construct is to be able to dispatch on constants, e.g., f(Val{false})
allows you to dispatch directly (at compile-time) to an implementation f(::Type{Val{false}})
, without having to test the boolean value at runtime.
Examples
See Also
BigFloat, BigInt, Dict, eltype, fieldtype, Float32, Float64, IntSet, isa, isalnum, isalpha, isascii, iseltype, isequal, isgraph, isimmutable, isinteractive, isleaftype, isnull, ispunct, isspace, issubtype, keytype, Nullable, NullException, promote_type, typeintersect, typejoin, typemax, typemin, typeof, Val, valtype,User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.