user541686
user541686

Reputation: 210525

How to implement Ranges in D

How do you implement your own range in D? I've looked everywhere but I can't find any documentation on which methods (like popFront, for example) need to be implemented for which kinds of ranges.

Upvotes: 6

Views: 299

Answers (1)

Michal Minich
Michal Minich

Reputation: 2657

This should be it

http://www.digitalmars.com/d/2.0/phobos/std_range.html

Upvotes: 4

Related Questions