elixir-nimble-parsec 1.1.0-1 source package in Ubuntu

Changelog

elixir-nimble-parsec (1.1.0-1) unstable; urgency=medium

  * Initial release (closes: #992006).

 -- Sergei Golovan <email address hidden>  Tue, 27 Feb 2024 17:32:12 +0300

Upload details

Uploaded by:
Debian Erlang Packagers
Uploaded to:
Sid
Original maintainer:
Debian Erlang Packagers
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
elixir-nimble-parsec_1.1.0-1.dsc 2.1 KiB f935953b98730b704c52ebc5384044d7aa8cc1ca03630600162b403efc4e817b
elixir-nimble-parsec_1.1.0.orig.tar.gz 33.9 KiB f18456b3fefeb31f5923217fa6762bb4f13eddd512fdb46c05a563771b876485
elixir-nimble-parsec_1.1.0-1.debian.tar.xz 2.1 KiB 504112ca69ff758ee07b307cc82d19d8c89f699591d9f9a68d1b05768b75b68a

No changes file available.

Binary packages built by this source

elixir-nimble-parsec: simple and fast library for text-based parser combinators

 Simple and fast Elixir library for text-based parser combinators.
 .
 Combinators are built during runtime and compiled into multiple
 clauses with binary matching. This provides benefits of performance,
 composability by not relying on macros, no runtime dependency on
 NimbleParsec, and no "use" footprints on your modules.
 .
 The goal of this library is to focus on a set of primitives for
 writing efficient parser combinators. The composition aspect means
 you should be able to use those primitives to implement higher level
 combinators.
 .
 Note this library does not handle low-level binary parsing. In such
 cases, Elixir's bitstring syntax is recommended.