Viva Clipper !

HB_HSETAUTOADD()

Advertisements

HB_HSETAUTOADD()

Sets the ‘auto add’ flag for the hash table

Syntax

      HB_HSETAUTOADD( <hsTable>, [<lFlag>] ) -> <hsTable>

Arguments

<hsTable> a hash table, created by HB_HASH()

<lFlag> a logical value indicating to turn on or off the ‘auto add’ flag of the hash table

Returns

The hash table

Description

This function is equivalent to HB_HAUTOADD() but it returns the passed hash table rather than the old flag value

Examples

      LOCAL hsTable
      // turn 'auto add' on for a new hash table
      hsTable := hb_HSetAutoAdd( { "one" => 1, "two" => 2 }, .T. )

Compliance

Harbour

Seealso

HB_HAUTOADD(), HB_HSETBINARY(), HB_HSETCASEMATCH()

Advertisements

Advertisements