diff options
| author | Andreas Grois <andi@grois.info> | 2025-11-16 21:08:35 +0100 |
|---|---|---|
| committer | Andreas Grois <andi@grois.info> | 2025-11-16 21:08:35 +0100 |
| commit | 3a9ff92902df508074daa3017d1a71dae7e85248 (patch) | |
| tree | 3ddc5f4dc040ce2aa762c642569ff274f36049e7 /Common/String.lean | |
| parent | 75628f029abfd9829a1259a6e1dd7758d548c13f (diff) | |
Lean 4.25feature/day17
Diffstat (limited to 'Common/String.lean')
| -rw-r--r-- | Common/String.lean | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Common/String.lean b/Common/String.lean index 3edbd63..955affe 100644 --- a/Common/String.lean +++ b/Common/String.lean @@ -1,6 +1,6 @@ namespace String def splitTrim (c : Char → Bool) (s : String) : List String := - String.trim <$> s.split c + String.trim <$> s.splitToList c def notEmpty : String → Bool := not ∘ isEmpty |
