diff options
author | David Robillard <d@drobilla.net> | 2008-01-28 04:58:33 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-01-28 04:58:33 +0000 |
commit | 55b699d9a9b08ba8086f30f29348bf4c87231c12 (patch) | |
tree | 9b34dcadd5dced6bd41a0d1b80f47a5564a4a591 /slv2/values.h | |
parent | f6dfbc3553f683b2f310892581c8707b1354edc7 (diff) | |
download | lilv-55b699d9a9b08ba8086f30f29348bf4c87231c12.tar.gz lilv-55b699d9a9b08ba8086f30f29348bf4c87231c12.tar.bz2 lilv-55b699d9a9b08ba8086f30f29348bf4c87231c12.zip |
Documentation fixes.
git-svn-id: http://svn.drobilla.net/lad/slv2@1118 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/values.h')
-rw-r--r-- | slv2/values.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/slv2/values.h b/slv2/values.h index 40da342..bdff538 100644 --- a/slv2/values.h +++ b/slv2/values.h @@ -47,28 +47,28 @@ void slv2_values_free(SLV2Values); -/** Get the number of elements in a string list. +/** Get the number of elements in a value collection. */ unsigned -slv2_values_size(SLV2Values list); +slv2_values_size(SLV2Values values); -/** Get a string from a string list at the given index. +/** Get the value at a given index in the collection. * * @return the element at \a index, or NULL if index is out of range. * * Time = O(1) */ SLV2Value -slv2_values_get_at(SLV2Values list, unsigned index); +slv2_values_get_at(SLV2Values values, unsigned index); -/** Return whether \a list contains \a value. +/** Return whether \a values contains \a value. * * Time = O(n) */ bool -slv2_values_contains(SLV2Values list, SLV2Value value); +slv2_values_contains(SLV2Values values, SLV2Value value); /** @} */ |