Method: LibFST::Writer::Variable#value
- Defined in:
- ext/libfst_rb.c
#value ⇒ Object
Return the last set value.
2242 2243 2244 2245 |
# File 'ext/libfst_rb.c', line 2242
static VALUE libfst_writervariable_get_value(VALUE self)
{
return rb_ivar_get(self, id_at_value);
}
|