Searched defs:SmallFixedArray (Results 1 – 1 of 1) sorted by relevance
985 struct SmallFixedArray(T, uint SMALL=3) struct990 static struct Payload998 {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 …]