Type can be string or an integral type.
(a) k1 is not copied on function calls (b) k1 cannot be modified inside functionPlease correct me if I am wrong. Can storage class "in" be used to satisfy (a) and (b)?
void doIt(const ref Type k1){ .... } Type k = ...; doit(k);