refine description of pic_get_args
This commit is contained in:
parent
186bad0503
commit
4ac6c2b7ab
38
vm.c
38
vm.c
|
@ -35,26 +35,26 @@ pic_get_proc(pic_state *pic)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* char type
|
* char type desc.
|
||||||
* ---- ----
|
* ---- ---- ----
|
||||||
* o object
|
* o pic_value * object
|
||||||
* i int
|
* i int * int
|
||||||
* I int with exactness
|
* I int *, bool * int with exactness
|
||||||
* f float
|
* f double * float
|
||||||
* F float with exactness
|
* F double *, bool * float with exactness
|
||||||
* s string object
|
* s pic_str ** string object
|
||||||
* z c string
|
* z char ** c string
|
||||||
* m symbol
|
* m pic_sym * symbol
|
||||||
* v vector object
|
* v pic_vec ** vector object
|
||||||
* b bytevector object
|
* b pic_blob ** bytevector object
|
||||||
* c char
|
* c char * char
|
||||||
* l lambda object
|
* l struct pic_proc ** lambda object
|
||||||
* p port object
|
* p struct pic_port ** port object
|
||||||
* d dictionary object
|
* d struct pic_dict ** dictionary object
|
||||||
* e error object
|
* e struct pic_error ** error object
|
||||||
*
|
*
|
||||||
* | optional operator
|
* | optional operator
|
||||||
* * variable length operator
|
* * int *, pic_value ** variable length operator
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
Loading…
Reference in New Issue