1// Copyright (c) reifydb.com 2025
2// This file is licensed under the AGPL-3.0-or-later, see license.md file
34pub use length::TextLength;
5pub use substring::TextSubstring;
6pub use trim::TextTrim;
7pub use upper::TextUpper;
89mod length;
10mod substring;
11mod trim;
12mod upper;