phobos-next ~master (2024-03-19T05:49:32Z)
Home
Dub
Repo
isTrieableKeyType
nxt
container
trie
template
isTrieableKeyType (
T
) {
import
std
.
meta
:
allSatisfy
;
;
static if
(
is(T == struct)
)
enum
isTrieableKeyType
;
static if
(!(
is(T == struct)
))
static if
(!(
is(T == class)
))
enum
isTrieableKeyType
;
}
Members
Manifest constants
isTrieableKeyType
enum
isTrieableKeyType
;
Undocumented in source.
isTrieableKeyType
enum
isTrieableKeyType
;
Undocumented in source.
Return Value
true
if
T
is a type that can be stored as a key in a trie,
false
otherwise.
Meta
Source
See Implementation
nxt
container
trie
aliases
FixedKeyLeafN
IKey
Ix
Ixs
IxsN
Key
KeyN
Leaf1
RadixTreeMap
UIx
UKey
isFixedTrieableKeyType
enums
ModStatus
isScalarTrieableKeyType
functions
empty
firstIx
freeNode
makeFixedSizeNodePointer
makeFixedSizeNodeValue
print
showStatistics
testEqual
testScalar
testString
toFixedRawKey
toRawKey
toTypedKey
tryNextIx
manifest constants
keySeparator
useModuloFlag
structs
HeptLeaf1
OneLeafMax7
RadixTree
TriLeaf2
TwoLeaf3
templates
RadixTreeSet
RawRadixTree
iota
isTrieableKeyType