package shakuhachi

  1. Overview
  2. Docs
A music collection manager

Install

dune-project
 Dependency

Authors

Maintainers

Sources

0.1.0.tar.gz
sha256=bb7f91cc44c09f922d2a614e9e01fd0d2976840bacf839a8b99de63c6fc5b3b8
sha512=f02827db4228b017bb2ad7d64cb1c0667831ec2341e6f759266ec834e40627c2affeace143c6d5e769b3acce63f889b3cbd1a9ca4768091840e8fce1d4750f86

doc/shakuhachi.query/SkhcQuery/Field/String/index.html

Module Field.StringSource

Operations on string field node.

Sourcetype field =
  1. | Title of string
  2. | SortName of string
  3. | Artist of string
  4. | Album of string
  5. | AlbumArtist of string
  6. | Composer of string
  7. | Genre of string
  8. | Path of string
  9. | FileExtension of string
Sourcetype t

type of string field node

Sourceval regex : t -> bool
Sourceval insensible : t -> bool
Sourceval field : t -> field
Sourceval title : bool -> bool -> string -> t

title regex insensible field is Title with regex and insensible options.

Sourceval sort_name : bool -> bool -> string -> t

sort_name regex insensible field is SortName with regex and insensible options.

Sourceval artist : bool -> bool -> string -> t

artist regex insensible field is Artist with regex and insensible options.

Sourceval album : bool -> bool -> string -> t

album regex insensible field is Album with regex and insensible options.

Sourceval album_artist : bool -> bool -> string -> t

album_artist regex insensible field is AlbumArtist with regex and insensible options.

Sourceval composer : bool -> bool -> string -> t

composer regex insensible field is Composer with regex and insensible options.

Sourceval genre : bool -> bool -> string -> t

title regex insensible field is Genre with regex and insensible options.

Sourceval path : bool -> bool -> string -> t

path regex insensible field is Path with regex and insensible options.

Sourceval extension : bool -> bool -> string -> t

extension regex insensible field is FileExtension with regex and insensible options.

Sourceval to_string : t -> string

to_string field returns a string representation of field.

Sourceval to_sexp : t -> string

to_sexp field returns a s-expression compatible string of field.