Default + content-population constructors. All delegate to `basic_string(mInlineBuffer, N)` and then call the non-template population helpers on the base.
| 99 | // `basic_string(mInlineBuffer, N)` and then call the |
| 100 | // non-template population helpers on the base. |
| 101 | string_n() FL_NOEXCEPT : basic_string(mInlineBuffer, N) {} |
| 102 | |
| 103 | string_n(const char* str) FL_NOEXCEPT : basic_string(mInlineBuffer, N) { |
| 104 | if (str) copy(str); |