IEntityCodec.decode

Abstract methods to decode any encoded entities in a string.

(Unfortunately template methods can't be abstract.)

  1. char[] decode(const(char)[] text, char[] decoded)
    class IEntityCodec(E : IEntitySet)
    abstract
    char[]
    decode
    (
    const(char)[] text
    ,
    ref char[] decoded
    )
  2. wchar[] decode(const(wchar)[] text, wchar[] decoded)
  3. dchar[] decode(const(dchar)[] text, dchar[] decoded)

Meta