bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#42032: 27.0.91; Allow Lisp_User_Ptr to declare which LispObject it h


From: Ivan Yonchovski
Subject: bug#42032: 27.0.91; Allow Lisp_User_Ptr to declare which LispObject it has reference to
Date: Wed, 24 Jun 2020 19:59:01 +0300

This will using Lisp_User_Ptr for lazy computation. Here it is sample
flow:

(let ((lazy (my-module-function)))
  (my-module-get lazy "foo") ;; returns "bar"
  (my-module-get lazy "foo") ;; returns "bar"
  ...
  )

ATM it is not possible to cache "bar" in lazy because it will be garbage
collected.

Thanks,
Ivan





reply via email to

[Prev in Thread] Current Thread [Next in Thread]