I’m finding the ValueTree very useful in rewriting a better version of my program, using it especially for undo/redo and state recall. With the individual elements, the vars, I presume one of the primary uses is to replace the basic member elements of objects into the ValueTree. Once this has been done, the values need to be retrieved from the ValueTree for use by the object. To do this with a number you have to convert the var to a String using toString(), then into whatever number you want using, for example, getIntValue(). Is it possible to add toInt(), toFloat() etc to var so you can reduce the method calls and shorten the amount of code?