Eg. any function call can be converted to a method call on the function's first parameter:
let mylist = [3, 2, 1] " prints "1" as these two are equivalent echo sort(mylist) == mylist->sort()
reply
Eg. any function call can be converted to a method call on the function's first parameter:
Helps a lot with chaining.