(string: Expr)
| 120 | |
| 121 | #[doc = "the number of characters in the `string`"] |
| 122 | pub fn length(string: Expr) -> Expr { |
| 123 | character_length(string) |
| 124 | } |
| 125 | |
| 126 | #[doc = "finds the position from where the `substring` matches the `string`"] |
| 127 | pub fn position(string: Expr, substring: Expr) -> Expr { |
no test coverage detected
searching dependent graphs…