You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rusthon supports normal C++ syntax for namespaces ::, this allows you to easily integrate with external c++ libraries. note that below [...] is used to dereference the pointer (default vectors are wrapped by std::shared_ptr).
v = []int(1,2,3)
std::max_element( std::begin(v[...]), std::end(v[...]) )