[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Iterates an operation over the entries of a group.

Syntax

Visual Basic (Declaration)
Public Shared Function iterate ( _
	loc As H5LocId, _
	name As String, _
	func As H5GIterateDelegate, _
	parameters As Object, _
	startIndex As Integer _
) As Integer
C#
public static int iterate (
	H5LocId loc,
	string name,
	H5GIterateDelegate func,
	Object parameters,
	int startIndex
)
C++
public:
static int iterate (
	H5LocId^ loc, 
	String^ name, 
	H5GIterateDelegate^ func, 
	Object^ parameters, 
	int startIndex
)

Parameters

loc (H5LocId)
IN: File or group identifier.
name (String)
IN: Group over which the iteration is performed.
func (H5GIterateDelegate)
IN: Operation to be performed on an object at each step of the iteration.
parameters (Object)
startIndex (Int32)
IN: Location at which to begin the iteration

Return Value

Returns the return value of the last operator if it was non-zero, or zero if all group members were processed.

Remarks