summaryrefslogtreecommitdiffstats
path: root/runtime/map.doc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/map.doc')
-rw-r--r--runtime/map.doc23
1 files changed, 0 insertions, 23 deletions
diff --git a/runtime/map.doc b/runtime/map.doc
index 6a1585b7..29d740f6 100644
--- a/runtime/map.doc
+++ b/runtime/map.doc
@@ -108,17 +108,6 @@ MAP _stp_map_new_KEY1__ (int num_entries, HSTAT_LINEAR, int start, int stop, int
*/
void _stp_map_set_str (MAP map, char *val) {}
-/** Set the current element's value to a String.
- * This sets the current element's value to a String. The map must have been created
- * to hold strings using <i>_stp_map_new_(xxx, STRING)</i>
- *
- * If the element doesn't exist, it is created. If no current element (key)
- * is set for the map, this function does nothing.
- * @param map
- * @param str String containing new value.
- * @sa _stp_map_set()
- */
-void _stp_map_set_string (MAP map, String str){}
/** Appends a C string to the current element's value
* This appends a C string to the current element's value. The map must have been created
@@ -131,18 +120,6 @@ void _stp_map_set_string (MAP map, String str){}
* @sa _stp_map_set()
*/
void _stp_map_add_str (MAP map, char *val) {}
-
-/** Adds an int64 to the current element's value.
- * This adds an int64 to the current element's value. The map must have been created
- * to hold int64s using <i>_stp_map_new_(xxx, INT64)</i>
- *
- * If the element doesn't exist, it is created. If no current element (key)
- * is set for the map, this function does nothing.
- * @param map
- * @param val value
- * @sa _stp_map_set_int64()
- */
-void _stp_map_add_int64 (MAP map, int64_t val) {}
/** @} end of map_set group*/
/** @defgroup map_get Getting the Values from Maps