I was wondering how transitive const applies to functions. For example would the following declaration:

const int delegate(char)

be equivalent to:

const(int) delegate(char) // I think its this one

or:

const(int) delegate(const(char))

Would it be different for function instead of delegate?

Reply via email to