- appendEncodedEntityChar[] appendEncodedEntity(Char[] text, dchar c) 
- Appends an encoded entity to a string (in the form "&entity_name;"). 
- containsEncodedbool containsEncoded(const(char)[] text) 
- Checks whether the input string contains any encoded entities. 
- containsEncodedbool containsEncoded(const(wchar)[] text) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- containsEncodedbool containsEncoded(const(dchar)[] text) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- containsEncoded_bool containsEncoded_(Char[] text) 
- Internal method for checking whether the passed string contains any
        encoded entities. 
- containsUnencodedbool containsUnencoded(const(char)[] text) 
- Checks whether the input string contains any unencoded entities. 
- containsUnencodedbool containsUnencoded(const(wchar)[] text) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- containsUnencodedbool containsUnencoded(const(dchar)[] text) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- containsUnencoded_bool containsUnencoded_(Char[] text) 
- Internal method for checking whether the passed string contains any
        unencoded entities. 
- decodemstring decode(const(char)[] text, mstring decoded) 
- Decode any encoded entities in the input string. 
- decodewchar[] decode(const(wchar)[] text, wchar[] decoded) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- decodedchar[] decode(const(dchar)[] text, dchar[] decoded) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- decodeCharacterEntitydchar decodeCharacterEntity(Char[] entity) 
- Converts an encoded entity to a unicode character. 
- decodeEntitydchar decodeEntity(Char[] entity) 
- Converts an encoded entity to a unicode character. The entity may be
        either:
            - a numeric character reference (eg "á" for 'á'), or
            - a named ISO8859-1/15 (Latin 1/9) entity (eg "ß" for 'ß'). 
- decodeNumericCharacterRefdchar decodeNumericCharacterRef(Char[] entity) 
- Converts an encoded numeric character reference entity to a unicode
        character. Numeric character references are either: 
- decode_MutChar[] decode_(ConstChar[] text, MutChar[] decoded) 
- Internal method for decoding any encoded entities in a string. 
- encodechar[] encode(const(char)[] text, char[] encoded) 
- Encode any unencoded entities in the input string. 
- encodewchar[] encode(const(wchar)[] text, wchar[] encoded) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- encodedchar[] encode(const(dchar)[] text, dchar[] encoded) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- encode_MutChar[] encode_(ConstChar[] text, MutChar[] encoded) 
- Internal method for encoding any unencoded entities in a string. 
- isEncodedEntitybool isEncodedEntity(Char[] text, bool exact_match) 
- Checks whether the input string begins with an encoded entity. 
- isSpacebool isSpace(Char c) 
- Checks whether the given character is a space. 
- isUnencodedEntitybool isUnencodedEntity(Char[] text) 
- Checks whether the input string begins with an unencoded entity. 
- sliceEncodedEntityChar[] sliceEncodedEntity(Char[] text) 
- Parses content to see if it's an encoded entity string. The criteria
        are: 
Class to en/decode xml / html style entities.