Passing a sting as 'in char[]' yields "immutable is not callable using argument types ()"

chmike via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Wed Jun 8 08:13:43 PDT 2016


>     final Tuple!(int,"value",bool,"hasValue") value(const 
> string name) { return nameImpl(value); }


Sorry, this is the error. It should have been

    final Tuple!(int,"value",bool,"hasValue") value(const
     string name) { return valueImpl(name); }



More information about the Digitalmars-d-learn mailing list