Expose head/tail/full for move operations.
| 140 | |
| 141 | // Expose head/tail/full for move operations. |
| 142 | fl::size head() const { return mHead; } |
| 143 | fl::size tail() const { return mTail; } |
| 144 | bool isFull() const { return mFull; } |
| 145 | void setHead(fl::size h) { mHead = h; } |
no outgoing calls
no test coverage detected