| 56 | explicit TakeOptions(bool boundscheck = true); |
| 57 | static constexpr const char kTypeName[] = "TakeOptions"; |
| 58 | static TakeOptions BoundsCheck() { return TakeOptions(true); } |
| 59 | static TakeOptions NoBoundsCheck() { return TakeOptions(false); } |
| 60 | static TakeOptions Defaults() { return BoundsCheck(); } |
| 61 |
no outgoing calls
no test coverage detected