url:OBJECT instead of url:STRING

BlitzMax Forums/BlitzMax Beginners Area/url:OBJECT instead of url:STRING

Red(Posted 2005) [#1]
What benefit is there in using URL:object ?


Perturbatio(Posted 2005) [#2]
you can pass a stream object and read from that (i.e. a ramstream).


FlameDuck(Posted 2005) [#3]
Object is the Super Type of any object in the program. Thus you can pass any object to it, rather than just strings.

Whether it's a benefit or not, depends on what you need it for.


Red(Posted 2005) [#4]
Ah, that's why there are some loader modules in Bmax.
Loader can receive Stream object.

I see.