| 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 | |
| 62 | bool boundscheck = true; |