Re: Phix : win32lib7 project
- Posted by ChrisB (moderator) Dec 15, 2016
- 1652 views
Hi
Currently stalled on w32Remainder() - Theres issues with remaindering sequences that differ between Phix and Eu - will probably just rewrite to take account of as many different scenarios as possible. ie
object w32Remainder(object a, object b)
a atom, b atom, return atom
a sequence (of atoms), b atom, return sequence of remainders of length a
a atom, b sequence (of atoms) return sequence of remainders of length b
a sequence, b sequence, sequence length same, return sequence of remainders of length a (= length b)
a sequence, b sequence, return error (crash message)
Oh, and Phix has no crashmessage (afaict), so commented this out for now.
Chris