MAPL_HashCreate Function

public function MAPL_HashCreate(Nbuckets)

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: Nbuckets

Return Value integer


Called by

proc~~mapl_hashcreate~~CalledByGraph proc~mapl_hashcreate MAPL_HashCreate proc~mapl_locstreamcreatexform MAPL_LocStreamCreateXform proc~mapl_locstreamcreatexform->proc~mapl_hashcreate

Source Code

integer function  MAPL_HashCreate(Nbuckets)
  integer,           intent(IN) :: Nbuckets

  integer CREATEHASH
  MAPL_HashCreate = CREATEHASH(Nbuckets)

end function MAPL_HashCreate