pike.git/
src/
svalue.h
Branch:
Tag:
Non-build tags
All tags
No tags
2021-05-02
2021-05-02 15:30:17 by Henrik Grubbström (Grubba) <grubba@grubba.org>
f74f8533941f3c34172ab53bda7956e06c63809d (
6
lines) (+
5
/-
1
)
[
Show
|
Annotate
]
Branch:
master
Doc: Updated doc for PIKE_T_UNKNOWN.
Also fixes a typo.
67:
PIKE_T_FUNCTION_ARG = 4, /* Only used in type strings. */
-
/* NB: The reference counted types all have bit
4
set. */
+
/* NB: The reference counted types all have bit
3
(8)
set. */
PIKE_T_ARRAY=8, PIKE_T_MAPPING=9, PIKE_T_MULTISET=10,
178:
/** Used to mark an svalue as free and not valid for input * to the svalue free functions. * Cf assert_free_svalue().
+
*
+
* Also used as a placeholder for the empty many type in
+
* serialized function types (eg tFunction) (cf tUnknown).
*/ PIKE_T_UNKNOWN=247,