@@ -14,15 +14,15 @@ description:
1414 serialization; generalizes parsers to any input type and unifies
1515 attoparsec, parsec use cases with better performance; provides
1616 streaming fileIO — all with a clean, consistent, well-integrated and
17- streaming enabled API. Despite a minimal API surface, Streamly offers
18- a wide range of capabilities.
17+ streaming enabled API.
1918 .
20- Streams in Streamly feel just like lists — no steep learning curve,
21- no complex types. It is designed to build general purpose applications
22- in a truly functional manner, from simple hello-world to advanced
23- high-performance systems. The design emphasizes simplicity,
24- modularity, and code reuse with minimal building blocks. Performance
25- is on par with C, tuning is easy, and it’s hard to get it wrong.
19+ Streams are designed to have a list like interface — no steep
20+ learning curve, no complex types. Streamly is designed to build
21+ general purpose applications in a truly functional manner, from
22+ simple hello-world to advanced high-performance systems. The design
23+ emphasizes simplicity, modularity, and code reuse with minimal
24+ building blocks. Performance is on par with C, tuning is easy, and
25+ it’s hard to get it wrong.
2626 .
2727 Streamly is serial by default, with seamless declarative concurrency
2828 that scales automatically when needed. It provides prompt and safe
@@ -33,10 +33,10 @@ description:
3333 @streamly-core@ is a Haskell standard library built on top of @base@
3434 and GHC boot libraries only. Stream processing abstractions include
3535 streams, scans, folds, parsers; and console I/O, file I/O; text
36- processing, and string interpolation . Array abstractions include
37- pinned, unpinned, mutable, immutable, boxed and unboxed arrays, and
38- ring arrays. Builders, binary serialization, and deserialization are
39- built-in features of arrays.
36+ processing. Array abstractions include pinned, unpinned, mutable,
37+ immutable, boxed and unboxed arrays, and ring arrays. Builders,
38+ binary serialization, and deserialization are built-in features of
39+ arrays.
4040 .
4141 This package provides a high-performance, unified and ergonomic
4242 alternative to many disparate packages, such as @streaming, pipes,
0 commit comments