import public Data.Refined.Char
import public Data.Refined.List
import public Data.Refined.Core0 Len : (Integer -> Type) -> String -> Type0 Str : (List Char -> Type) -> String -> Typedata LeftTrimmed : List Char -> TypeProof that a (non-empty) list of characters does not start with
a whitespace character.
LTCons : Holds (not . isControl) c -> LeftTrimmed (c :: cs)HDec (List Char) LeftTrimmedHDec0 (List Char) LeftTrimmeddata RightTrimmed : List Char -> TypeProof that a list of characters does not start with a whitespace character.
RT1 : Holds (not . isControl) c -> RightTrimmed [c]RTCons : RightTrimmed cs -> RightTrimmed (c :: cs)HDec (List Char) RightTrimmedHDec0 (List Char) RightTrimmed0 Trimmed : List Char -> Type