cal <callumenator at gmail.com> wrote:
> To get the held type of a Variant, use .type():
>
> if(value.type() == typeid(Map))
> writeln("value == map");
> else if(value.type() == typeid(Value))
> writeln("value == Value"); // Is still Value!
>
> prints map.
Thanks cal, that will help! Seems I'm currently (?)
a bit blind...
Peter