1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Source: xstr
Section: ocaml
Priority: optional
Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
Uploaders: Stefano Zacchiroli <zack@debian.org>, Sylvain Le Gall <gildor@debian.org>
Build-Depends:
debhelper (>= 7),
ocaml-nox (>= 3.11),
ocaml-findlib (>= 1.2.4),
cdbs,
dh-ocaml (>= 0.9.1),
dpatch
Standards-Version: 3.8.3
Vcs-Git: git://git.debian.org/git/pkg-ocaml-maint/packages/xstr.git
Vcs-Browser: http://git.debian.org/?p=pkg-ocaml-maint/packages/xstr.git
Homepage: http://projects.camlcity.org/projects/xstr.html
Package: libxstr-ocaml-dev
Architecture: any
Depends:
${ocaml:Depends},
ocaml-findlib,
${shlibs:Depends},
${misc:Depends}
Provides:
${ocaml:Provides}
Description: OCaml library for frequent string operations
xstr is an OCaml library for string operations.
.
This package implements frequent string operations: searching,
replacing, splitting, matching. It is independent from the Str library,
and can replace Str in many cases. Unlike Str, xstr is thread-safe.
xstr does not implement regular expressions in general, but an
important subset. Some operations of xstr are performed as quickly as
by Str; if the string to be processed is small, xstr is often faster
than Str; if the string is big, xstr is up to half as fast than Str.
|