aMinI( ) Function

Description:
  The aMinI() function returns the minimum indice of the array aArray.

Syntax:
  retval = aMinI ( aArray )

Parameters:
  array: aArray An array to get the minimum indices of.
  variant: retval The maximum indices of the array.

Platforms:
  Windows, DOS, Internet Active Pages



Example:

	local var1, retval     		// Variables								
	var1 = {{a,b,c,d,e},{1,2,3,4,5,6,7,8,9,0}}	// Search Array
	retval = amini( var1[2] )	// Returns the number of entries in var1[2]
	
	println( retval )		// print the results to the screen

  

(c) 2000-2001 by West Coast Web Adventures, Inc., All Rights Reserved