| 159 | } // namespace internal |
| 160 | |
| 161 | FilterOptions::FilterOptions(NullSelectionBehavior null_selection) |
| 162 | : FunctionOptions(internal::kFilterOptionsType), |
| 163 | null_selection_behavior(null_selection) {} |
| 164 | constexpr char FilterOptions::kTypeName[]; |
| 165 | |
| 166 | TakeOptions::TakeOptions(bool boundscheck) |
no outgoing calls