Skip Navigation Links.

H5G..::..iterate Method

Iterates an operation over the entries of a group. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5G.html#Group-Iterate

Namespace:  HDF5DotNet
Assembly:  HDF5DotNet (in HDF5DotNet.dll)

Syntax

Visual Basic
Public Shared Function iterate ( _
	loc As H5LocId, _
	name As String, _
	func As H5GIterateCallback, _
	parameters As Object, _
	ByRef startIndex As Integer _
) As Integer
C#
public static int iterate(
	H5LocId loc,
	string name,
	H5GIterateCallback func,
	Object parameters,
	ref int startIndex
)
Visual C++
public:
static int iterate(
	H5LocId^ loc, 
	String^ name, 
	H5GIterateCallback^ func, 
	Object^ parameters, 
	int% startIndex
)
JavaScript
HDF5DotNet.H5G.iterate = function(loc, name, func, parameters, startIndex);

Parameters

loc
Type: HDF5DotNet..::..H5LocId
IN: File or group identifier.
name
Type: String
IN: Group over which the iteration is performed.
func
Type: HDF5DotNet..::..H5GIterateCallback
IN: Operation to be performed on an object at each step of the iteration.
parameters
Type: Object
startIndex
Type: 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