reifydb_engine/function/text/
mod.rs

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