Home
last modified time | relevance | path

Searched defs:SmallFixedArray (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/
H A Dir.d985 struct SmallFixedArray(T, uint SMALL=3) struct
990 static struct Payload
998 {
1002 size_t _sizeMask;
1003 enum BIG_MASK = size_t(1)<<(8*size_t.sizeof-1);
1004 enum SIZE_MASK = ~BIG_MASK;
1006 @property bool isBig() const { return (_sizeMask & BIG_MASK) != 0; } in isBig()
1007 @property size_t length() const { return _sizeMask & SIZE_MASK; } in length()
1009 this(size_t size) in this()
1037 bool opEquals(SmallFixedArray a) in opEquals() argument
[all …]