class FuncList: public list<A*>

List that adds map and select methods

Inheritance:


Public Methods

[more]void map(void function(A *obj))
Map method. Apply a function to each element of the list.
[more] select(int function(A *obj))
Select method
[more]void map(void function(A *obj, B farg), B arg)
Map method. Apply a function to each element of the list.
[more] select(int function(A *obj, B farg), B arg)
Select method


Documentation

List that adds map and select methods.
ovoid map(void function(A *obj))
Map method. Apply a function to each element of the list.

o select(int function(A *obj))
Select method. Returns a sub-list containing all the elements where the function has returned TRUE.

ovoid map(void function(A *obj, B farg), B arg)
Map method. Apply a function to each element of the list.

o select(int function(A *obj, B farg), B arg)
Select method. Returns a sub-list containing all the elements where the function has returned TRUE.


Direct child classes:
NstVertexList
NstEdgeList

Alphabetic index HTML hierarchy of classes or Java



This page was generated with the help of DOC++.