Re: Python slices in Scheme

2023-06-19 Thread Damien Mattei
hello Jay what is Sexp Front? regards, Damien On Mon, Jun 19, 2023 at 3:53 AM Jay Sulzberger wrote: > > On Sun, 18 Jun 2023, Damien Mattei wrote: > > > hello, > > > > i'm porting the Python slicing ( > > https://docs.python.org/2/reference/expressions.html#slicings ) to > Scheme > > Guile and R

Re: Python slices in Scheme

2023-06-19 Thread Damien Mattei
it seems a big work , thanks On Mon, Jun 19, 2023 at 6:37 PM lloda wrote: > > My library guile-newra (1) has quite general multidimensional array > slicing. The indices can be linear ranges or arbitrary integer arrays and > they can have any rank. You can also use the indexed array as write targ

Re: Python slices in Scheme

2023-06-19 Thread Zelphir Kaltstahl
On 6/19/23 18:36, lloda wrote: My library guile-newra (1) has quite general multidimensional array slicing. The indices can be linear ranges or arbitrary integer arrays and they can have any rank. You can also use the indexed array as write target. If all the indices are linear ranges then the

Re: Python slices in Scheme

2023-06-19 Thread lloda
My library guile-newra (1) has quite general multidimensional array slicing. The indices can be linear ranges or arbitrary integer arrays and they can have any rank. You can also use the indexed array as write target. If all the indices are linear ranges then the operation is done without copi