Vale 0.2 Released: Higher RAII, Concept Functions, Const Generics, FFI, Modules, Faster Compiles, set Keyword

from blog Languages and Architecture, | ↗ original
Concept Functions Vale now supports concept functions, a way to specify that certain functions must exist for given generic parameters, without making them implement any traits. For example, List's clone function can require that there exists a clone function for its elements: func...