Skip to content

dlib.core.tuple

Timur Gafarov edited this page Apr 26, 2017 · 2 revisions

dlib.core.tuple

Templates that construct tuples of numeric values.

template Tuple(E...)

A tuple.

template RangeTuple(int stop)

Yields a tuple of integer literals from 0 to stop.

template RangeTuple(int start, int stop)

Yields a tuple of integer literals from start to stop.

template RangeTuple(int start, int stop, int step)

Yields a tuple of integer literals from start to stop with defined step.