diff --git a/reference/quickhash/quickhashinthash/add.xml b/reference/quickhash/quickhashinthash/add.xml index bf2527abbc..e0abc73c6c 100644 --- a/reference/quickhash/quickhashinthash/add.xml +++ b/reference/quickhash/quickhashinthash/add.xml @@ -10,9 +10,9 @@ &reftitle.description; - public booleanQuickHashIntHash::add - integerkey - integervalue + public boolQuickHashIntHash::add + intkey + intvalue This method adds a new entry to the hash, and returns whether the entry was diff --git a/reference/quickhash/quickhashinthash/construct.xml b/reference/quickhash/quickhashinthash/construct.xml index 8bad070377..a7d19dc45d 100644 --- a/reference/quickhash/quickhashinthash/construct.xml +++ b/reference/quickhash/quickhashinthash/construct.xml @@ -11,8 +11,8 @@ &reftitle.description; public QuickHashIntHash::__construct - integersize - integeroptions + intsize + intoptions This constructor creates a new QuickHashIntHash. The size is the amount of diff --git a/reference/quickhash/quickhashinthash/delete.xml b/reference/quickhash/quickhashinthash/delete.xml index bab47cf400..4ea3f92ea6 100644 --- a/reference/quickhash/quickhashinthash/delete.xml +++ b/reference/quickhash/quickhashinthash/delete.xml @@ -10,8 +10,8 @@ &reftitle.description; - public booleanQuickHashIntHash::delete - integerkey + public boolQuickHashIntHash::delete + intkey This method deletes an entry from the hash, and returns whether the entry was diff --git a/reference/quickhash/quickhashinthash/exists.xml b/reference/quickhash/quickhashinthash/exists.xml index 165826ff23..d8a91c37c6 100644 --- a/reference/quickhash/quickhashinthash/exists.xml +++ b/reference/quickhash/quickhashinthash/exists.xml @@ -10,8 +10,8 @@ &reftitle.description; - public booleanQuickHashIntHash::exists - integerkey + public boolQuickHashIntHash::exists + intkey This method checks whether an entry with the provided key exists in the diff --git a/reference/quickhash/quickhashinthash/get.xml b/reference/quickhash/quickhashinthash/get.xml index 23a1dcd938..75a2f7d3db 100644 --- a/reference/quickhash/quickhashinthash/get.xml +++ b/reference/quickhash/quickhashinthash/get.xml @@ -10,8 +10,8 @@ &reftitle.description; - public integerQuickHashIntHash::get - integerkey + public intQuickHashIntHash::get + intkey This method retrieves a value from the hash by its key. diff --git a/reference/quickhash/quickhashinthash/getsize.xml b/reference/quickhash/quickhashinthash/getsize.xml index 55c6a964a0..c8722174f3 100644 --- a/reference/quickhash/quickhashinthash/getsize.xml +++ b/reference/quickhash/quickhashinthash/getsize.xml @@ -10,7 +10,7 @@ &reftitle.description; - public integerQuickHashIntHash::getSize + public intQuickHashIntHash::getSize Returns the number of elements in the hash. diff --git a/reference/quickhash/quickhashinthash/loadfromfile.xml b/reference/quickhash/quickhashinthash/loadfromfile.xml index 9c514fd2e9..1768319ee6 100644 --- a/reference/quickhash/quickhashinthash/loadfromfile.xml +++ b/reference/quickhash/quickhashinthash/loadfromfile.xml @@ -12,7 +12,7 @@ public static QuickHashIntHashQuickHashIntHash::loadFromFile stringfilename - integeroptions + intoptions This factory method creates a new hash from a definition file on disk. The diff --git a/reference/quickhash/quickhashinthash/loadfromstring.xml b/reference/quickhash/quickhashinthash/loadfromstring.xml index 0cbd65db2d..4f46c3554d 100644 --- a/reference/quickhash/quickhashinthash/loadfromstring.xml +++ b/reference/quickhash/quickhashinthash/loadfromstring.xml @@ -12,7 +12,7 @@ public static QuickHashIntHashQuickHashIntHash::loadFromString stringcontents - integeroptions + intoptions This factory method creates a new hash from a definition in a string. The diff --git a/reference/quickhash/quickhashinthash/set.xml b/reference/quickhash/quickhashinthash/set.xml index 3c637c0a61..cc18e40040 100644 --- a/reference/quickhash/quickhashinthash/set.xml +++ b/reference/quickhash/quickhashinthash/set.xml @@ -11,9 +11,9 @@ &reftitle.description; - public booleanQuickHashIntHash::set - integerkey - integervalue + public boolQuickHashIntHash::set + intkey + intvalue This method tries to update an entry with a new value. In case the entry diff --git a/reference/quickhash/quickhashinthash/update.xml b/reference/quickhash/quickhashinthash/update.xml index 28fefd1f60..1ccfa361ed 100644 --- a/reference/quickhash/quickhashinthash/update.xml +++ b/reference/quickhash/quickhashinthash/update.xml @@ -10,9 +10,9 @@ &reftitle.description; - public booleanQuickHashIntHash::update - integerkey - integervalue + public boolQuickHashIntHash::update + intkey + intvalue This method updates an entry with a new value, and returns whether the entry was diff --git a/reference/quickhash/quickhashintset/add.xml b/reference/quickhash/quickhashintset/add.xml index d2bd0c468c..32193ad561 100644 --- a/reference/quickhash/quickhashintset/add.xml +++ b/reference/quickhash/quickhashintset/add.xml @@ -10,8 +10,8 @@ &reftitle.description; - public booleanQuickHashIntSet::add - integerkey + public boolQuickHashIntSet::add + intkey This method adds a new entry to the set, and returns whether the entry was diff --git a/reference/quickhash/quickhashintset/construct.xml b/reference/quickhash/quickhashintset/construct.xml index b9ee37f3ed..f90a56bd59 100644 --- a/reference/quickhash/quickhashintset/construct.xml +++ b/reference/quickhash/quickhashintset/construct.xml @@ -11,8 +11,8 @@ &reftitle.description; public QuickHashIntSet::__construct - integersize - integeroptions + intsize + intoptions This constructor creates a new QuickHashIntSet. The size is the amount of diff --git a/reference/quickhash/quickhashintset/delete.xml b/reference/quickhash/quickhashintset/delete.xml index e996e472ca..0edd3cb9e4 100644 --- a/reference/quickhash/quickhashintset/delete.xml +++ b/reference/quickhash/quickhashintset/delete.xml @@ -10,8 +10,8 @@ &reftitle.description; - public booleanQuickHashIntSet::delete - integerkey + public boolQuickHashIntSet::delete + intkey This method deletes an entry from the set, and returns whether the entry was diff --git a/reference/quickhash/quickhashintset/exists.xml b/reference/quickhash/quickhashintset/exists.xml index 28e88e68fc..a9b6082347 100644 --- a/reference/quickhash/quickhashintset/exists.xml +++ b/reference/quickhash/quickhashintset/exists.xml @@ -10,8 +10,8 @@ &reftitle.description; - public booleanQuickHashIntSet::exists - integerkey + public boolQuickHashIntSet::exists + intkey This method checks whether an entry with the provided key exists in the diff --git a/reference/quickhash/quickhashintset/getsize.xml b/reference/quickhash/quickhashintset/getsize.xml index a5ebe09806..7078319681 100644 --- a/reference/quickhash/quickhashintset/getsize.xml +++ b/reference/quickhash/quickhashintset/getsize.xml @@ -10,7 +10,7 @@ &reftitle.description; - publicintegerQuickHashIntSet::getSize + publicintQuickHashIntSet::getSize Returns the number of elements in the set. diff --git a/reference/quickhash/quickhashintset/loadfromfile.xml b/reference/quickhash/quickhashintset/loadfromfile.xml index 1d11e4c1cd..21b137c82c 100644 --- a/reference/quickhash/quickhashintset/loadfromfile.xml +++ b/reference/quickhash/quickhashintset/loadfromfile.xml @@ -12,8 +12,8 @@ public static QuickHashIntSetQuickHashIntSet::loadFromFile stringfilename - integersize - integeroptions + intsize + intoptions This factory method creates a new set from a definition file on disk. The diff --git a/reference/quickhash/quickhashintset/loadfromstring.xml b/reference/quickhash/quickhashintset/loadfromstring.xml index 9b020e2f67..76ac082f27 100644 --- a/reference/quickhash/quickhashintset/loadfromstring.xml +++ b/reference/quickhash/quickhashintset/loadfromstring.xml @@ -12,8 +12,8 @@ public static QuickHashIntSetQuickHashIntSet::loadFromString stringcontents - integersize - integeroptions + intsize + intoptions This factory method creates a new set from a definition in a string. The diff --git a/reference/quickhash/quickhashintstringhash/add.xml b/reference/quickhash/quickhashintstringhash/add.xml index 8b8d190665..f0239cab51 100644 --- a/reference/quickhash/quickhashintstringhash/add.xml +++ b/reference/quickhash/quickhashintstringhash/add.xml @@ -10,8 +10,8 @@ &reftitle.description; - public booleanQuickHashIntStringHash::add - integerkey + public boolQuickHashIntStringHash::add + intkey stringvalue diff --git a/reference/quickhash/quickhashintstringhash/construct.xml b/reference/quickhash/quickhashintstringhash/construct.xml index baa4e37909..44b7c50421 100644 --- a/reference/quickhash/quickhashintstringhash/construct.xml +++ b/reference/quickhash/quickhashintstringhash/construct.xml @@ -11,8 +11,8 @@ &reftitle.description; public QuickHashIntStringHash::__construct - integersize - integeroptions + intsize + intoptions0 This constructor creates a new QuickHashIntStringHash. The size is the amount of diff --git a/reference/quickhash/quickhashintstringhash/delete.xml b/reference/quickhash/quickhashintstringhash/delete.xml index 380ae8de9c..73f784f477 100644 --- a/reference/quickhash/quickhashintstringhash/delete.xml +++ b/reference/quickhash/quickhashintstringhash/delete.xml @@ -10,8 +10,8 @@ &reftitle.description; - public booleanQuickHashIntStringHash::delete - integerkey + public boolQuickHashIntStringHash::delete + intkey This method deletes an entry from the hash, and returns whether the entry was diff --git a/reference/quickhash/quickhashintstringhash/exists.xml b/reference/quickhash/quickhashintstringhash/exists.xml index a401597e07..d46833bbb3 100644 --- a/reference/quickhash/quickhashintstringhash/exists.xml +++ b/reference/quickhash/quickhashintstringhash/exists.xml @@ -10,8 +10,8 @@ &reftitle.description; - public booleanQuickHashIntStringHash::exists - integerkey + public boolQuickHashIntStringHash::exists + intkey This method checks whether an entry with the provided key exists in the diff --git a/reference/quickhash/quickhashintstringhash/get.xml b/reference/quickhash/quickhashintstringhash/get.xml index 2c3cf01186..5945335f37 100644 --- a/reference/quickhash/quickhashintstringhash/get.xml +++ b/reference/quickhash/quickhashintstringhash/get.xml @@ -10,8 +10,8 @@ &reftitle.description; - public integerQuickHashIntStringHash::get - integerkey + public mixedQuickHashIntStringHash::get + intkey This method retrieves a value from the hash by its key. diff --git a/reference/quickhash/quickhashintstringhash/getsize.xml b/reference/quickhash/quickhashintstringhash/getsize.xml index d4170bac6e..1de848c82c 100644 --- a/reference/quickhash/quickhashintstringhash/getsize.xml +++ b/reference/quickhash/quickhashintstringhash/getsize.xml @@ -10,7 +10,7 @@ &reftitle.description; - public integerQuickHashIntStringHash::getSize + public intQuickHashIntStringHash::getSize Returns the number of elements in the hash. diff --git a/reference/quickhash/quickhashintstringhash/loadfromfile.xml b/reference/quickhash/quickhashintstringhash/loadfromfile.xml index 48ab4e835d..0b00bacdfb 100644 --- a/reference/quickhash/quickhashintstringhash/loadfromfile.xml +++ b/reference/quickhash/quickhashintstringhash/loadfromfile.xml @@ -12,7 +12,8 @@ public static QuickHashIntStringHashQuickHashIntStringHash::loadFromFile stringfilename - integeroptions + intsize0 + intoptions0 This factory method creates a new hash from a definition file on disk. The @@ -75,6 +76,16 @@ key/value 2 (key = 3, string index = 4 ("NINE")): + + size + + + The amount of bucket lists to configure. The number you pass in will be + automatically rounded up to the next power of two. It is also + automatically limited from 4 to 4194304. + + + options diff --git a/reference/quickhash/quickhashintstringhash/loadfromstring.xml b/reference/quickhash/quickhashintstringhash/loadfromstring.xml index f7e0988eec..4e9cd98eea 100644 --- a/reference/quickhash/quickhashintstringhash/loadfromstring.xml +++ b/reference/quickhash/quickhashintstringhash/loadfromstring.xml @@ -12,7 +12,8 @@ public static QuickHashIntStringHashQuickHashIntStringHash::loadFromString stringcontents - integeroptions + intsize0 + intoptions0 This factory method creates a new hash from a definition in a string. The @@ -32,6 +33,16 @@ + + size + + + The amount of bucket lists to configure. The number you pass in will be + automatically rounded up to the next power of two. It is also + automatically limited from 4 to 4194304. + + + options diff --git a/reference/quickhash/quickhashintstringhash/set.xml b/reference/quickhash/quickhashintstringhash/set.xml index e83461b08b..5b4d9f45a9 100644 --- a/reference/quickhash/quickhashintstringhash/set.xml +++ b/reference/quickhash/quickhashintstringhash/set.xml @@ -11,8 +11,8 @@ &reftitle.description; - public booleanQuickHashIntStringHash::set - integerkey + public intQuickHashIntStringHash::set + intkey stringvalue diff --git a/reference/quickhash/quickhashintstringhash/update.xml b/reference/quickhash/quickhashintstringhash/update.xml index 9c6c253065..e02d1fff7e 100644 --- a/reference/quickhash/quickhashintstringhash/update.xml +++ b/reference/quickhash/quickhashintstringhash/update.xml @@ -10,8 +10,8 @@ &reftitle.description; - public booleanQuickHashIntStringHash::update - integerkey + public boolQuickHashIntStringHash::update + intkey stringvalue diff --git a/reference/quickhash/quickhashstringinthash/add.xml b/reference/quickhash/quickhashstringinthash/add.xml index c7977cb894..026ef6bc38 100644 --- a/reference/quickhash/quickhashstringinthash/add.xml +++ b/reference/quickhash/quickhashstringinthash/add.xml @@ -10,7 +10,7 @@ &reftitle.description; - public booleanQuickHashStringIntHash::add + public boolQuickHashStringIntHash::add stringkey intvalue diff --git a/reference/quickhash/quickhashstringinthash/construct.xml b/reference/quickhash/quickhashstringinthash/construct.xml index ea5479ed13..20f5247f79 100644 --- a/reference/quickhash/quickhashstringinthash/construct.xml +++ b/reference/quickhash/quickhashstringinthash/construct.xml @@ -11,8 +11,8 @@ &reftitle.description; public QuickHashStringIntHash::__construct - integersize - integeroptions + intsize + intoptions0 This constructor creates a new QuickHashStringIntHash. The size is the amount of diff --git a/reference/quickhash/quickhashstringinthash/delete.xml b/reference/quickhash/quickhashstringinthash/delete.xml index 01fdd3955c..d8724d2ec4 100644 --- a/reference/quickhash/quickhashstringinthash/delete.xml +++ b/reference/quickhash/quickhashstringinthash/delete.xml @@ -10,7 +10,7 @@ &reftitle.description; - public booleanQuickHashStringIntHash::delete + public boolQuickHashStringIntHash::delete stringkey diff --git a/reference/quickhash/quickhashstringinthash/exists.xml b/reference/quickhash/quickhashstringinthash/exists.xml index aa6cf14a89..fd334454c4 100644 --- a/reference/quickhash/quickhashstringinthash/exists.xml +++ b/reference/quickhash/quickhashstringinthash/exists.xml @@ -10,7 +10,7 @@ &reftitle.description; - public booleanQuickHashStringIntHash::exists + public boolQuickHashStringIntHash::exists stringkey diff --git a/reference/quickhash/quickhashstringinthash/get.xml b/reference/quickhash/quickhashstringinthash/get.xml index f55f436977..b5de095933 100644 --- a/reference/quickhash/quickhashstringinthash/get.xml +++ b/reference/quickhash/quickhashstringinthash/get.xml @@ -10,7 +10,7 @@ &reftitle.description; - public integerQuickHashStringIntHash::get + public mixedQuickHashStringIntHash::get stringkey diff --git a/reference/quickhash/quickhashstringinthash/getsize.xml b/reference/quickhash/quickhashstringinthash/getsize.xml index 9935cb9e99..2ea1c74780 100644 --- a/reference/quickhash/quickhashstringinthash/getsize.xml +++ b/reference/quickhash/quickhashstringinthash/getsize.xml @@ -10,7 +10,7 @@ &reftitle.description; - public integerQuickHashStringIntHash::getSize + public intQuickHashStringIntHash::getSize Returns the number of elements in the hash. diff --git a/reference/quickhash/quickhashstringinthash/loadfromfile.xml b/reference/quickhash/quickhashstringinthash/loadfromfile.xml index f37798f35f..1aa42545e4 100644 --- a/reference/quickhash/quickhashstringinthash/loadfromfile.xml +++ b/reference/quickhash/quickhashstringinthash/loadfromfile.xml @@ -12,7 +12,8 @@ public static QuickHashStringIntHashQuickHashStringIntHash::loadFromFile stringfilename - integeroptions + intsize0 + intoptions0 This factory method creates a new hash from a definition file on disk. The @@ -87,6 +88,16 @@ bucket lists: + + size + + + The amount of bucket lists to configure. The number you pass in will be + automatically rounded up to the next power of two. It is also + automatically limited from 4 to 4194304. + + + options diff --git a/reference/quickhash/quickhashstringinthash/loadfromstring.xml b/reference/quickhash/quickhashstringinthash/loadfromstring.xml index 9930c766b3..731a6870d4 100644 --- a/reference/quickhash/quickhashstringinthash/loadfromstring.xml +++ b/reference/quickhash/quickhashstringinthash/loadfromstring.xml @@ -12,7 +12,8 @@ public static QuickHashStringIntHashQuickHashStringIntHash::loadFromString stringcontents - integeroptions + intsize0 + intoptions0 This factory method creates a new hash from a definition in a string. The @@ -32,6 +33,16 @@ + + size + + + The amount of bucket lists to configure. The number you pass in will be + automatically rounded up to the next power of two. It is also + automatically limited from 4 to 4194304. + + + options diff --git a/reference/quickhash/quickhashstringinthash/set.xml b/reference/quickhash/quickhashstringinthash/set.xml index 2ebac90243..e26a89d2a4 100644 --- a/reference/quickhash/quickhashstringinthash/set.xml +++ b/reference/quickhash/quickhashstringinthash/set.xml @@ -11,7 +11,7 @@ &reftitle.description; - public booleanQuickHashStringIntHash::set + public intQuickHashStringIntHash::set stringkey intvalue diff --git a/reference/quickhash/quickhashstringinthash/update.xml b/reference/quickhash/quickhashstringinthash/update.xml index 27e24f0f65..6836460cc0 100644 --- a/reference/quickhash/quickhashstringinthash/update.xml +++ b/reference/quickhash/quickhashstringinthash/update.xml @@ -10,9 +10,9 @@ &reftitle.description; - public booleanQuickHashStringIntHash::update + public boolQuickHashStringIntHash::update stringkey - integervalue + intvalue This method updates an entry with a new value, and returns whether the entry was