MimeDatabase.this - multiple declarations

Function MimeDatabase.this

Constructor based on MIME paths. It uses MimeDetectorFromCache as MIME type detector and FilesMimeStore as MIME type store.

this(Range) (
  Range mimePaths
)
if (isInputRange!Range && is(ElementType!Range : string));

Parameters

NameDescription
mimePaths Range of paths to base mime directories where needed files will be read.

See Also

mimePaths, MimeDetectorFromCache, FilesMimeStore

Function MimeDatabase.this

Create MimeDatabase object with given store and detector.

this (
  IMimeStore store,
  IMimeDetector detector
) @safe;