package shakuhachi

  1. Overview
  2. Docs
A music collection manager

Install

dune-project
 Dependency

Authors

Maintainers

Sources

0.3.1.tar.gz
sha256=91dc3168bc12fdd6032c16f9990018fd54f91cea50d9f6eb798e4d5eecd9c6a6
sha512=a93c4bf39d80d2c595d361b393f0f1fd2fd078e5bd714988e835a0b5ac8c8c48d3b4cbe2e11d33c9168d9f2f44818b6a60e38b32773bd4967c24794abbf323dd

doc/shakuhachi.libs/Skhclibs/Format/index.html

Module Skhclibs.FormatSource

Operations on formatting. This module offers functions for substituing keys inside format string.

  • since 0.2.0
Sourceval filename_f : extension:string -> SkhcConfig.Config.t -> SkhcMetadata.Metadata.t -> SkhcQuery.Format.t -> string

filename ~extension config metadata format substitutes keys inside format by mapping keys with information inside metadata. extension maps to the filename's extension. The returned strings is guaranted to not contain any '/', '\\' or 0x00 character.

  • since 0.3.0
Sourceval filename : extension:string -> SkhcConfig.Config.t -> SkhcMetadata.Metadata.t -> string -> string

filename ~extension config metadata format substitutes keys inside format by mapping keys with information inside metadata. extension maps to the filename's extension. The returned strings is guaranted to not contain any '/', '\\' or 0x00 character.

music music album roles properties format substitutes keys inside format by mapping keys with information inside music, album, roles and properties.

music music album roles properties format substitutes keys inside format by mapping keys with information inside music, album, roles and properties.

  • since 0.3.0
Sourceval album : safe:bool -> extension:string option -> SkhcDb.Album.t -> SkhcDb.Album.Stats.t -> (string * SkhcDb.Roles.t) SkhcDb.Ids.Map.t -> string -> string

album ~safe ~extension album stats roles format substitutes keys inside format by mapping keys with information inside album, stats and roles. If extension is Some, the key SkhcQuery.Keys.extension is mapped to extension. safe indicates whether '/', '\\' or 0x00 character should by replaced by an underscore.

Sourceval album_f : safe:bool -> extension:string option -> SkhcDb.Album.t -> SkhcDb.Album.Stats.t -> (string * SkhcDb.Roles.t) SkhcDb.Ids.Map.t -> SkhcQuery.Format.t -> string

album ~safe ~extension album stats roles format substitutes keys inside format by mapping keys with information inside album, stats and roles. If extension is Some, the key SkhcQuery.Keys.extension is mapped to extension. safe indicates whether '/', '\\' or 0x00 character should by replaced by an underscore.

  • since 0.3.0
Sourceval album_metadata : safe:bool -> extension:string option -> SkhcMetadata.Metadata.t -> string -> string

album_metadata ~safe ~extension ~title metadata format substitutes keys inside format by mapping keys with information inside metadata. album_metadata is similar to album except that Int, Float and Bool.flag fields are not populated. If extension is Some, the key SkhcQuery.Keys.extension is mapped to extension. safe indicates whether '/', '\\' or 0x00 character should by replaced by an underscore.

Sourceval album_metadata_f : safe:bool -> extension:string option -> SkhcMetadata.Metadata.t -> SkhcQuery.Format.t -> string

album_metadata ~safe ~extension ~title metadata format substitutes keys inside format by mapping keys with information inside metadata. album_metadata is similar to album except that Int, Float and Bool.flag fields are not populated. If extension is Some, the key SkhcQuery.Keys.extension is mapped to extension. safe indicates whether '/', '\\' or 0x00 character should by replaced by an underscore.

  • since 0.3.0
Sourceval artist : safe:bool -> extension:string option -> SkhcDb.Artist.t -> string -> string

artist ~safe ~extension artist format substitutes keys inside format by mapping keys with information inside artist. If extension is Some, the key SkhcQuery.Keys.extension is mapped to extension. safe indicates whether '/', '\\' or 0x00 character should by replaced by underscore.

Sourceval artist_f : safe:bool -> extension:string option -> SkhcDb.Artist.t -> SkhcQuery.Format.t -> string

artist ~safe ~extension artist format substitutes keys inside format by mapping keys with information inside artist. If extension is Some, the key SkhcQuery.Keys.extension is mapped to extension. safe indicates whether '/', '\\' or 0x00 character should by replaced by underscore.

  • since 0.3.0