isPathIterator

Returns true if T is a PathIterator. Not exactly an iterator in traditional sense, its an array like API but you still use it to iterate over the path.

T must have the following methods...

Point opIndex(size_t idx) PathCmd cmd(size_t idx) size_t length() void* source() bool inPlace()

enum bool isPathIterator(T);

Meta