package dune-private-libs

  1. Overview
  2. Docs
Private libraries of Dune

Install

Dune Dependency

Authors

Maintainers

Sources

dune-3.19.1.tbz
sha256=a10386f980cda9417d1465466bed50dd2aef9c93b9d06a0f7feeedb0a1541158
sha512=d1622939713133a1f28617229896298d6ef194c48a47d011e4b752490fc83893cc920a8395d7ac60bc384a6c9b233ebf0665f38f74f2774a983e9d3b241a7746

doc/dune-private-libs.dune_re/Dune_re/Seq/index.html

Module Dune_re.SeqSource

Sourceval all : ?pos:int -> ?len:int -> Dune_re__.Core.re -> string -> Dune_re__.Core.Group.t Seq.t

Same as Re.all but returns an iterator.

Examples:

    # let regex = Re.compile Re.(seq [str "my"; blank; word(rep alpha)]);;
    val regex : re = <abstr>

    # Re.Seq.all regex "my head, my shoulders, my knees, my toes ...";;
    - : Re.substrings Seq.t = <fun>
  • since 1.10.0
Sourceval matches : ?pos:int -> ?len:int -> Dune_re__.Core.re -> string -> string Seq.t

Same as Re.matches, but returns an iterator.

Example:

    # let regex = Re.compile Re.(seq [str "my"; blank; word(rep alpha)]);;
    val regex : re = <abstr>

    # Re.Seq.matches regex "my head, my shoulders, my knees, my toes ...";;
    - : string Seq.t = <fun>
  • since 1.10.0
Sourceval split : ?pos:int -> ?len:int -> Dune_re__.Core.re -> string -> string Seq.t

Same as Re.split but returns an iterator.

Example:

    # let regex = Re.compile (Re.char ',');;
    val regex : re = <abstr>

    # Re.Seq.split regex "Re,Ocaml,Jerome Vouillon";;
    - : string Seq.t = <fun>
  • since 1.10.0
Sourceval split_full : ?pos:int -> ?len:int -> Dune_re__.Core.re -> string -> [ `Text of string | `Delim of Dune_re__.Core.Group.t ] Seq.t

Same as Re.split_full but returns an iterator.

Example:

    # let regex = Re.compile (Re.char ',');;
    val regex : re = <abstr>

    # Re.Seq.split_full regex "Re,Ocaml,Jerome Vouillon";;
    - : Re__Core.split_token Seq.t = <fun>
  • since 1.10.0
OCaml

Innovation. Community. Security.