updated docs

This commit is contained in:
Davis King 2013-01-21 17:13:05 -05:00
parent e341600ffb
commit 014aa448a5
2 changed files with 30 additions and 0 deletions

View File

@ -74,6 +74,8 @@
<item>md5</item>
<item>crc32</item>
<item>hash</item>
<item>count_bits</item>
<item>hamming_distance</item>
<item>murmur_hash3</item>
<item>murmur_hash3_128bit</item>
<item>gaussian_random_hash</item>
@ -294,6 +296,32 @@
</component>
<!-- ************************************************************************* -->
<component>
<name>count_bits</name>
<file>dlib/hash.h</file>
<spec_file link="true">dlib/general_hash/count_bits_abstract.h</spec_file>
<description>
This function counts the number of bits in an unsigned integer which are
set to 1.
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>hamming_distance</name>
<file>dlib/hash.h</file>
<spec_file link="true">dlib/general_hash/count_bits_abstract.h</spec_file>
<description>
This function returns the hamming distance between two unsigned integers.
That is, it returns the number of bits which differer in the two integers.
</description>
</component>
<!-- ************************************************************************* -->
<component>

View File

@ -1025,6 +1025,8 @@
<term file="algorithms.html" name="murmur_hash3"/>
<term file="algorithms.html" name="murmur_hash3_128bit"/>
<term file="algorithms.html" name="hash"/>
<term file="algorithms.html" name="count_bits"/>
<term file="algorithms.html" name="hamming_distance"/>
<term file="algorithms.html" name="gaussian_random_hash"/>
<term file="algorithms.html" name="uniform_random_hash"/>