newLISP Fan Club

Forum => Anything else we might add? => Topic started by: steloflute on October 27, 2013, 02:07:29 AM

Title: bigint arithmetic + - * / bug?
Post by: steloflute on October 27, 2013, 02:07:29 AM
arithmetic operators + - * / accept only 2 bigint (//http) arguments?



> (apply * (dup 2 10))

1024

> (* 2L 2L 2L)

4L

> (apply * (dup 2L 10))

4L

> (apply * (dup 2L 10) 2)

1024L



I think it is not consistent. cf.

> (* 2 2 2)

8
Title: Re: bigint arithmetic + - * / bug?
Post by: Lutz on October 27, 2013, 02:31:52 AM
Yes, big integer arithmetik operations only accept 2 parameters, as stated by the documentation. It has to be like this to keep newLISP small.



Use apply with a reduce parameter of 2 to work around this - as correctly shown in your example.
Title: Re: bigint arithmetic + - * / bug?
Post by: steloflute on October 27, 2013, 02:44:31 AM
Thank you for your reply!



Oh, the documentation.. It is in the examples. I think it should go to the main description. ^_^



; only 2 arguments are allowed in big integer operations

; apply with reduce parameter 2 guarantees 2 args at a time

; sequence itself does not take big integers, before using

; apply, the sequence is converted with bigint
Title: Re: bigint arithmetic + - * / bug?
Post by: Lutz on October 27, 2013, 02:55:55 AM
... added now to the first paragraph: http://www.newlisp.org/downloads/newlisp_manual.html#big_int