rope-0.1: Tools for manipulating annotated ropes of bytestrings

Data.Rope.Internal

Contents

Synopsis

Documentation

Construction

Analysis

Deconstruction

Cutting

elide :: Annotation a => Int -> Int -> Rope a -> Rope aSource

splitAt :: Annotation a => Int -> Rope a -> (Rope a, Rope a)Source

take :: Annotation a => Int -> Rope a -> Rope aSource

drop :: Annotation a => Int -> Rope a -> Rope aSource

Pasting

break8 :: Annotation m => (Word8 -> Bool) -> Rope m -> (Rope m, Rope m)Source