| 8 | |
| 9 | #if __cplusplus >= 201402L |
| 10 | inline constexpr StringView use_assing_operator_in_constexpr( |
| 11 | StringView original) { |
| 12 | StringView tmp; |
| 13 | tmp = original; |
| 14 | return tmp; |
| 15 | } |
| 16 | |
| 17 | inline constexpr StringView use_remove_prefix_in_constexpr(StringView original, |
| 18 | size_t num) { |