vertexMap - multiple declarations

Function vertexMap

map a single face to another face of same shape with all elements mapped by the passed function. element type of returned face can differ from element type in input face

auto vertexMap(alias fun, FT) (
  in FT face
)
if (isFace!FT);

Function vertexMap

map a range of face to another range of face where each vertex is mapped (and whose type might change)

auto vertexMap(alias fun, FR) (
  FR faceRange
)
if (isInputRange!FR && isFace!(ElementType!FR));