|
SRFI 214: Flexvectors
Arthur A. Gleckler
(07 Oct 2020 17:10 UTC)
|
|
Re: SRFI 214: Flexvectors
Marc Nieper-Wißkirchen
(08 Oct 2020 09:41 UTC)
|
|
Re: SRFI 214: Flexvectors
Marc Nieper-Wißkirchen
(08 Oct 2020 09:59 UTC)
|
|
Re: SRFI 214: Flexvectors
Adam Nelson
(08 Oct 2020 12:10 UTC)
|
|
Nomenclature
Lassi Kortela
(08 Oct 2020 12:19 UTC)
|
|
Re: SRFI 214: Flexvectors
Marc Nieper-Wißkirchen
(08 Oct 2020 12:19 UTC)
|
|
Nomenclature
Lassi Kortela
(08 Oct 2020 12:26 UTC)
|
|
Re: Nomenclature
Marc Nieper-Wißkirchen
(08 Oct 2020 12:31 UTC)
|
|
Re: Nomenclature
Lassi Kortela
(08 Oct 2020 12:50 UTC)
|
|
Re: Nomenclature
Marc Nieper-Wißkirchen
(08 Oct 2020 13:01 UTC)
|
|
Flexvectors vs subtyping Per Bothner (08 Oct 2020 17:23 UTC)
|
|
Re: Flexvectors vs subtyping
Arthur A. Gleckler
(08 Oct 2020 17:29 UTC)
|
|
Re: Flexvectors vs subtyping
Adam Nelson
(08 Oct 2020 17:32 UTC)
|
|
Re: Flexvectors vs subtyping
Marc Nieper-Wißkirchen
(08 Oct 2020 17:46 UTC)
|
|
Re: Flexvectors vs subtyping
Adam Nelson
(08 Oct 2020 17:56 UTC)
|
|
Re: Flexvectors vs subtyping
Marc Nieper-Wißkirchen
(08 Oct 2020 19:21 UTC)
|
|
Re: Flexvectors vs subtyping
Lassi Kortela
(08 Oct 2020 20:09 UTC)
|
|
Re: Flexvectors vs subtyping
Marc Nieper-Wißkirchen
(08 Oct 2020 20:51 UTC)
|
|
Re: Flexvectors vs subtyping
Lassi Kortela
(08 Oct 2020 21:23 UTC)
|
|
Re: Flexvectors vs subtyping
Arvydas Silanskas
(12 Oct 2020 09:58 UTC)
|
|
Re: Flexvectors vs subtyping
Marc Nieper-Wißkirchen
(08 Oct 2020 20:35 UTC)
|
|
Re: Flexvectors vs subtyping
Per Bothner
(08 Oct 2020 17:54 UTC)
|
|
Re: Flexvectors vs subtyping
Lassi Kortela
(08 Oct 2020 20:39 UTC)
|
|
Re: SRFI 214: Flexvectors
Marc Nieper-Wißkirchen
(08 Oct 2020 17:32 UTC)
|
|
Re: SRFI 214: Flexvectors
Adam Nelson
(08 Oct 2020 17:35 UTC)
|
|
Re: SRFI 214: Flexvectors
Marc Nieper-Wißkirchen
(08 Oct 2020 18:05 UTC)
|
|
Re: SRFI 214: Flexvectors
Adam Nelson
(08 Oct 2020 18:34 UTC)
|
|
Re: SRFI 214: Flexvectors
Marc Nieper-Wißkirchen
(08 Oct 2020 18:57 UTC)
|
|
Flexvector computational complexity
Adam Nelson
(08 Oct 2020 17:47 UTC)
|
|
Re: Flexvector computational complexity
Marc Nieper-Wißkirchen
(08 Oct 2020 19:04 UTC)
|
|
Re: Flexvector computational complexity
John Cowan
(08 Oct 2020 19:18 UTC)
|
|
Re: Flexvector computational complexity
Adam Nelson
(08 Oct 2020 19:40 UTC)
|
I accidentally replied the following to just Arthur, but meant to send it to a wider audience:
I've said it before, and I'll said it again: Having all these distinct datatypes
with distinct APIs and no subtyping is bonkers.
Nothing against this particular SRFI, which is just another
example of a bad approach to design a language. Common Lisp did this
much better in 1984.
Arthur agreed that "we should [probably] have a subtyping mechanism",
and encouraged proposals along these lines. However, there is no point
unless these are a significant number of users and implementors who feel the same.
This means not just designing an API for defining types and classes,
but also re-thinking and slimming down SRFI 214 and a dozen collection
APIs to make use of sub-typing.
I believe there is no point in continuing with r7rs-large on its current course
without sub-typing; I think it is doomed to sink under its own weight.
FWIW, Kawa's define-class/define-simple-class has the necessary functionality,
but the syntax (based on Common Lisp) may not be to everyone's liking,
and it has more tweaks and features than makes sense for a standard:
https://www.gnu.org/software/kawa/Defining-new-classes.html
What is needed IMO is a way to define "types" (interfaces)
with multiple inheritance of methods (with optional default implementation),
and no fields; and concrete "classes" that implement interfaces,
have fields, and (probably) no inheritance.
--
--Per Bothner
xxxxxx@bothner.com http://per.bothner.com/