You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SCI contains some protocols like IDeref that users are able to implement in scripts. However, this comes with some perf overhead. Protocols are currently represented as multi-methods in SCI (this is an implementation detail). It seems in CLJS you're able to add to a protocol at runtime, by manipulating objects.
If SCI, by permission of the SCI users of course, has access to the native protocol, perhaps we can support extending ILookup etc in user space without much perf overhead.
The text was updated successfully, but these errors were encountered:
SCI contains some protocols like IDeref that users are able to implement in scripts. However, this comes with some perf overhead. Protocols are currently represented as multi-methods in SCI (this is an implementation detail). It seems in CLJS you're able to add to a protocol at runtime, by manipulating objects.
If SCI, by permission of the SCI users of course, has access to the native protocol, perhaps we can support extending
ILookup
etc in user space without much perf overhead.The text was updated successfully, but these errors were encountered: