c++

March 11, 2016 ยท View on GitHub

C++ equivalents used for pseudo types and concepts:

PseudoC++
List[T]vector
Dictionary[K, V]unordered_map<K, V>
Set[T]set
Tuple[T1, T2..]tuple<T1, T2..>
Intint
Floatfloat

niceties

  • support c++ lambdas
  • uses smart_ptr and weak_ptr instead of raw pointers, thanks to CppPointerMiddleware