• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

AltME groups: search

Help · search scripts · search articles · search mailing list

results summary

worldhits
r4wp43
r3wp567
total:610

results window for this page: [start: 601 end: 610]

world-name: r3wp

Group: #Boron ... Open Source REBOL Clone [web-public]
Anton:
16-Jul-2006
In rebol, it would be faster, yes. Those other compiled languages 
can more easily afford to map every function.
Group: Core ... Discuss core issues [web-public]
Ladislav:
19-Feb-2012
MAP is an associative (Key <-> Value) data "storage". In R2 a correspoding 
way would be to use the hash! datatype, however, if you want to discern 
keys from values you need to use a separate Keys hash! and a separate 
Values block, otherwise you end up having Keys and Values intermixed. 
Your way of using the /skip refinement and a block is slower, however 
it searches only in Keys as well due to the /skip 2 use. When not 
used, it would search in Values.
Geomol:
19-Feb-2012
Or wrap it in a context:

map: context [
	keys: make hash! ["a" "b"]
	values: ["b" "c"]
	pick: func [value] [
		system/words/pick values index? find keys value
	]
]

>> map/pick "a"
== "b"
>> map/pick "b"
== "c"
Group: Red ... Red language group [web-public]
Kaj:
14-Dec-2011
http://red.esperconsultancy.nl/Red-OSM-GPS-Map
Pekr:
24-Dec-2011
Is there possible something like CALL in Red/System? I expect currently 
"no", so what's the right aproach to it? Map system calls via wrapping 
an OS libary? Do you plan to have something like CALL to have easy 
interfacing along with PARSE in Red level? :-)
Group: Topaz ... The Topaz Language [web-public]
Gabriele:
23-Nov-2011
Progress: I added the action! datatype, and am preparing to write 
the "real" compiler. i was hoping to start that this week but it's 
starting to seem very unlikely. sleep is starting to seem unlikely 
this week. :)

Being usable: no.

Speed: currently, you can use the "Fake Topaz" dialect and map 100% 
to JS; the interpreter is of course much slower. When 1.0 is ready: 
i don't think there will be reasons to worry about performance.
Group: World ... For discussion of World language [web-public]
Geomol:
1-Feb-2012
First try on a World Map:
http://www.fys.ku.dk/~niclasen/world/World_Map.html

Made with FreeMind and exported as Flash.
Geomol:
2-Feb-2012
The Map is the current picture of what's implemented, so it's not 
an image of all for version 1 of World. As I mention in the README 
on GitHub, date! and time! is only partly implemented, the rest is 
more or less completed for version 1.

I would like to improve the Map, so I'm working on that.
Geomol:
2-Feb-2012
New World Map at:

http://www.fys.ku.dk/~niclasen/world/World_Map.html


I freshed it up with some colors, which is also informative, added 
system, sys-utils and net-utils, added icons for parts with issues 
and added parts not implemented yet as grays.
GiuseppeC:
2-Feb-2012
Nice map !
601 / 610123456[7]