Andrew
Andrew
Haven't tried those. Tbh I just remembered one important detail which is -- I have built it succesfully first time using (as far as I understand) sbcl that roswell downloaded...
I am using Debian 10 (latest stable, I guess). And I have "User theme" enabled in the gnome tweak tool. If I disable it, the sliders appear, but the lines...
I have actually tried about 10 different themes, for most of them, both sliders and lines are broken, for some sliders work but the lines are broken. Atm I'm using...
To clarify the reason -- me (and I shared my idea with @digikar99) have and idea to use specialization-store for something similar to cl-generic project -- but avoiding generics to...
I'm pretty sure to deal with second issue, we'll need to be using environment to see if anything was declared.
Well, that if types are declared, but if they are not declared then it like "who knows", so the idea is to assume it s good and defined and see...
Well, what happens if at the run time it does not find the required specialization? It erros. The point is to error _at compile time_ if it is known (at...
I would prefer to avoid relying on compiler policies, since that would effectively be a restriction. I think in my specific case (unless I'm not seeing something), there aren't any...
Thanks a lot for your effort! Right now this errors: ``` (defun foo (a b) (declare (string a)) ;;(list b) (= a b)) ``` (where = is a store) It...
Sure thing, so basically I have this `=` overloaded for many different types. However, here's the idea -- it is only defined for objects of the same type (sometimes generalized,...