World: r3wp
[!REBOL3-OLD1]
older newer | first last |
Oldes 3-Jun-2009 [15140] | http://www.rebol.net/wiki/Ports? |
BrianH 3-Jun-2009 [15141] | Yup, and read the source. |
Pekr 4-Jun-2009 [15142] | Oldes - don't forget to study the link in above article, especially - http://www.rebol.net/wiki/Port_Examples |
Pekr 5-Jun-2009 [15143] | BrianH: what will be the equivalent for read/lines in R3? I kind of can't live without that function :-) Should I create mezzanine for it? |
BrianH 5-Jun-2009 [15144] | DELINE. |
Pekr 5-Jun-2009 [15145] | and to get it back we should use write enline output? |
BrianH 5-Jun-2009 [15146x6] | Yeah, except deline/lines and enline of block doesn't work yet (tickets #648 and #647, respectively). |
Of course to get the text in the first place you need READ/text (ticket #622), or TO-STRING. | |
Paul, I am taking a look at a good suggestion for a function that is similar to one of your mezzanine proposals. Could you take a look? | |
http://curecode.org/rebol3/ticket.rsp?id=637 | |
Sample usage: >> any-of x [-1 4 10] [x > 0] == 4 >> any-of [x y] [1 4 10 8 5 -3] [(x - 2) = y] == [10 8] >> all-of x [33 -1 24] [x > 0] == none >> all-of [x y] [1 2 3 4] [x < y] == true | |
If we do these as mezzanine with the full R3 *EACH word and set-word syntax these become big functions, similar in scope to my R2-Forward MAP function. If we limit the words to the word! type it becomes much easier, but still with more overhead than ANY and ALL. I had put off working on these for months because I thought DO/next was needed to implement them, but I've just realized that it isn't. | |
Paul 5-Jun-2009 [15152x2] | I think they are great ideas. A bit more extended then my any+ function. |
Probably a bit more practical also. | |
BrianH 5-Jun-2009 [15154] | Yeah, I really liked your ANY+, but it wasn't very REBOL-like. However, I couldn't come up with anything better. Then this guy did :) |
Izkata 5-Jun-2009 [15155x2] | For the second all-of example, 1 and 2 got checked, as did 3 and 4, but did 2 and 3? Same question to the second any-of example. |
(Mostly curiosity, but with all-of, would be a simple way to see if data is already sorted) | |
BrianH 5-Jun-2009 [15157] | If you provide multiple words, they get treated like a record, just like *EACH. |
Izkata 5-Jun-2009 [15158] | Ah, never noticed remove-each could do that, although I've used foreach that way |
BrianH 5-Jun-2009 [15159x3] | If you want to check for sorted, try this (if we support full *EACH syntax): >> all-of [x y:] [1 2 3 4] [any [tail? y x < first y]] == true |
(Soon-to-be) MAP-EACH also supports the record and set-word tricks :) | |
Here's a better check for sorted: >> all-of [x y:] [1 2 3 4] [x <= any [first y x]] == true | |
Paul 5-Jun-2009 [15162x2] | I would change the any-of syntax up a bit myself. |
any-of [x [1 2 3] y [4 5 6]][....] | |
BrianH 5-Jun-2009 [15164x2] | That would require a REDUCE or DO/next to use referenced data, and this function is too inefficient to use with inline data, as compared to the ANY and ALL equivalent code. These functions would only be worth using for large datasets, or otherwise their overhead would be too much. That is the problem ANY+ had :( |
The *EACH syntax is what makes these functions worth using, rather than refactoring away. | |
Paul 5-Jun-2009 [15166] | I'll grow my own as usual then. |
BrianH 5-Jun-2009 [15167] | Didn't you do so already? |
Paul 5-Jun-2009 [15168] | Indeed. |
Steeve 5-Jun-2009 [15169x2] | ** Hint Currently there is problem to complement charsets in R3. To have 256 values in the complement (like in R2), I add the char #"^(FF) in the charset: c: complement charset "0123456789^(FF)" But it's not exactly the same thing (cause the value 255 is not allowed in the complement). Have you any idea to have the "exact" complement (without using a nasty loop to construct the bitset!) ? |
I mean, instead of adding 255 in the initial charset, i should add 256, but i got a curious result doing that. So i may doing it bad. | |
BrianH 5-Jun-2009 [15171] | Complement charsets is almost completely broken in R3, mostly because a full complement of a charset would overwhelm your memory - about 512 megs each. This has been a known problem since last fall, and was the initiial reason for the Parse Proposals. |
Steeve 5-Jun-2009 [15172x2] | well, you didn't read what i've said, because i show a temporary solution |
to fit the R2 behavior | |
BrianH 5-Jun-2009 [15174x2] | Use INSERT on the result: >> insert insert complement charset "^(00)0123456789^(FF)" 0 255 == make bitset! #{FFFFFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF} |
You forgot the ^(00) at the front. | |
Steeve 5-Jun-2009 [15176x2] | Fine, exactly what i wanted to get, thanks |
we can't add 256 directly in the intial charset, i guess, anyway it's a clever solution. | |
BrianH 5-Jun-2009 [15178] | The complement charset problem is also the inspiration for the FIND/not proposal. |
Steeve 5-Jun-2009 [15179] | Hmmm, no need to add the char #"(00)", it seems... |
Henrik 5-Jun-2009 [15180] | btw. is there a reason why we can use 'unique on a bitset? |
Steeve 5-Jun-2009 [15181] | yep, they don't want bitsets acting like true series |
BrianH 5-Jun-2009 [15182] | Completeness, and to reduce special-casing code. |
Henrik 5-Jun-2009 [15183] | hmm ok :-) |
Steeve 5-Jun-2009 [15184] | Wait a minute... UNIQUE on a bitset! means nothing, they already contain unique values |
BrianH 5-Jun-2009 [15185x5] | Yup, it's a noop. It was deemed more important to eliminate all potential test-to-see-if-something-is-a-bitset-and-not-call-unique code. |
We're trying to make the functions more polymorphic in R3, to reduce special-case code. | |
Where it makes sense, of course (meaning: we can come up with a rationale). | |
For example, SELECT and APPEND also work on objects and maps, and the set functions also work on typesets. | |
Steeve, this works too: insert complement charset "^(00)0123456789^(FF)" [0 255] | |
older newer | first last |