# this file includes basic operation functions: # append # subvec # int # num # made by github user: ValKmjolnir # append is used to add a new var into an array/vector var append=func(vector,elements...) { return __call_special_inline_function(vector,elements); }; # subvec is used to get a new array from an exist array var subvec=func(vector,begin,length) { var new_vector=[]; for(var i=begin;i