package shakuhachi

  1. Overview
  2. Docs
A music collection manager

Install

dune-project
 Dependency

Authors

Maintainers

Sources

0.2.0.tar.gz
sha256=966fc8667c2aa9830e64950d2de74bd564a65d60e1f50cfd3dc1e99ef106dc47
sha512=6423ce04d784ba521a7f49fabdafbe036e2dd80cd08ca999fdc6767262d7f12aa4e5002d65efd4c568b343eaabf4d680191c88334d629e1ca0156084531e9e0b

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.