mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Use car instead of cell_get
car is much faster since there is no function overhead.
This commit is contained in:
parent
45c27f5a3a
commit
27bacda445
1 changed files with 1 additions and 1 deletions
|
@ -593,7 +593,7 @@
|
|||
((eq? p 'symbol?) "Cyc_is_symbol")
|
||||
((eq? p 'cons) "make_pair")
|
||||
((eq? p 'cell) "make_cell")
|
||||
((eq? p 'cell-get) "cell_get")
|
||||
((eq? p 'cell-get) "car") ;; Unsafe as cell gets added by compiler
|
||||
((eq? p 'set-cell!) "Cyc_set_cell")
|
||||
((eq? p 'set-global!) "global_set")
|
||||
(else
|
||||
|
|
Loading…
Add table
Reference in a new issue