-- | -- Copyright: (c) 2021-2022 Andrew Lelechenko -- Licence: BSD3 -- Maintainer: Andrew Lelechenko module Data.Text.Lines ( TextLines , fromText , toText , null -- * Lines , lines , lengthInLines , splitAtLine -- * Code points , length , span , splitAt , Position(..) , lengthAsPosition , splitAtPosition ) where import Prelude () import Data.Text.Lines.Internal