remove erroneously added files in libs/gdtoa
[panda.git] / scratch / text.h
blob9b3b46c81e30cf63e49f42afb44b06cf66172199
1 INLINE oop
2 goo_meta_allocate (GooMeta *meta)
4 return GOO_META_CLASS (meta)->allocate ();
7 INLINE bool
8 goo_meta_equal (GooMeta *meta, oop object, oop another)
10 return GOO_META_CLASS (meta)->equal (object, another);
13 INLINE bool
14 goo_meta_is_association (GooMeta *meta)
16 return GOO_META_CLASS (meta)->is_association ();
19 INLINE bool
20 goo_meta_is_class (GooMeta *meta)
22 return GOO_META_CLASS (meta)->is_class ();
25 INLINE bool
26 goo_meta_is_symbol (GooMeta *meta)
28 return GOO_META_CLASS (meta)->is_symbol ();
31 INLINE bool
32 goo_meta_is_compiled_method (GooMeta *meta)
34 return GOO_META_CLASS (meta)->is_compiled_method ();
37 INLINE bool
38 goo_meta_is_compiled_block (GooMeta *meta)
40 return GOO_META_CLASS (meta)->is_compiled_block ();
43 INLINE bool
44 goo_meta_is_block_closure (GooMeta *meta)
46 return GOO_META_CLASS (meta)->is_block_closure ();
49 INLINE bool
50 goo_meta_is_indexable (GooMeta *meta)
52 return GOO_META_CLASS (meta)->is_indexable ();
55 INLINE bool
56 goo_meta_is_variable (GooMeta *meta)
58 return GOO_META_CLASS (meta)->is_variable ();
61 INLINE bool
62 goo_meta_is_variable_byte (GooMeta *meta);
64 return GOO_META_CLASS (meta)->is_variable_byte ();