Following up on SRFI 179 Bradley Lucier (22 Sep 2021 22:30 UTC)
Re: Following up on SRFI 179 John Cowan (24 Sep 2021 19:24 UTC)
Re: Following up on SRFI 179 Alex Shinn (25 Sep 2021 13:24 UTC)
Re: Following up on SRFI 179 Bradley Lucier (25 Sep 2021 16:43 UTC)
Re: Following up on SRFI 179 Alex Shinn (28 Sep 2021 07:36 UTC)
Re: Following up on SRFI 179 Bradley Lucier (28 Sep 2021 20:20 UTC)
Re: Following up on SRFI 179 Bradley Lucier (28 Sep 2021 20:30 UTC)
Re: Following up on SRFI 179 Bradley Lucier (01 Oct 2021 00:07 UTC)
Re: Following up on SRFI 179 Alex Shinn (01 Oct 2021 00:43 UTC)
Re: array-copy, array-stack, array-append: What should the defaults be? Bradley Lucier (16 Jan 2022 18:56 UTC)
Re: Following up on SRFI 179 Lucier, Bradley J (05 Oct 2021 01:04 UTC)
Re: Following up on SRFI 179 John Cowan (06 Oct 2021 01:26 UTC)
Re: Following up on SRFI 179 Lucier, Bradley J (06 Oct 2021 13:48 UTC)
Re: Following up on SRFI 179 Bradley Lucier (05 Oct 2021 19:54 UTC)
array-{append|stack|inner-product} Bradley Lucier (21 Oct 2021 15:52 UTC)

Re: array-copy, array-stack, array-append: What should the defaults be? Bradley Lucier 16 Jan 2022 18:56 UTC

On 10/4/21 6:39 PM, John Cowan wrote:
> Only that SRFI 39 parameters can be mutated as well as bound, whereas
> R7RS parameters can only be bound.  This bridges different
> implementations of parameters.

CC'ing the SRFI 231 mail list.

The R7RS document here:

https://small.r7rs.org/attachment/r7rs.pdf

says

===============================
The effect of passing arguments to a parameter object is
implementation-dependent.
===============================

and further in the examples on page 20

===============================
(radix 16) =⇒ unspecified
===============================

SRFI 39 parameters and Racket parameters allow (radix 16) where further
calls to (radix) return 16.

So it appears that all these types of parameters (R7RS, SRFI 39, Racket)
allow (radix 16), but for R7RS the semantics are implementation dependent.

So in SRFI 231 I removed the "Issue" about what type of parameters
specialized-array-default-mutable? and specialized-array-default-safe?
should be.

Brad