unescape

Convert 'escaped' chars to normal ones. For example: \\ => \

The provided output buffer should be at least as long as the input string, or it will be allocated from the heap instead.

Returns a slice of dst where the content required conversion, or the provided src otherwise

  1. TC[] unescape(T[] src, TC[] dst)
    TC[]
    unescape
    (
    T
    TC = Unqual!(T)
    )
    (
    T[] src
    ,
    TC[] dst = null
    )
  2. void unescape(T[] src, void delegate(TC[]) emit)

Meta