James, Thanks. You are probably right. I had certainly considered that, but then had visions of doing: P<-Phone.New '' A<-P.AddressBook etc., all in my Dyalog...
Here is a Dyalog APL project I have been working on that may be of interest: www.flipdb.com I will be doing a presentation on it at the upcoming conference. ...
Please note that I'm not suggesting that you should use Outlook for email, or for anything else other than the "transfer form" of your address data on its way...
Message text written by INTERNET:dyalogusers@yahoogroups.com ... something with cellphones and Windows..< MS already has. WindowsCE has a subset called...
result[1 2] would only be 9 9 if the assignment were sequential, which (a b)<-b a demonstrates it isn't... although I'm not sure how the (A,) would be handled:...
... My guess would be the same as Randy's 2.0: 4 5 3 9 9 6 7 8 I think the right-to-left sweep across tokens to the left of the <- would remember _positions_...
Hi Paul, Don't hold your breath. Whenever we engage in our little daydream called "What would we do if we could start again", which as far as language is...
I'd use (A B)<-C D myself, and a verb B would cause an error. Such dreams are good: in one case I built an object setter: 'objectname.property' is value and...
John, Randy, Yes, that is what I thought should happen. Morten, all, I agree completely with your sentiments regarding modified assignment (and certainly was...
Burce Eckels writes on his Web Log on Okt 12th: Duck Typing: this is a casual term that aliases "latent typing" or "structural typing." It means that you, in...
... I don't know where he got the definition from, but I had seen it already used in a nice "experimental" .NET language called boo (http://boo.codehaus.org/)...
I've been struggling with a problem: I have an object and I am multithreading. Certain threads may update properties in the object. Other concurrent threads...
... Why can't you just use a mutex (i.e :Hold)? This won't scale well if you have many threads that need to modify the object, but many threads having...
Joakim HÃ¥rsman
joakim.harsman@...
Oct 24, 2005 6:37 am
1806
... If some cases, instead of a mutex, a reader-writer lock will do, when concurrent reads are OK, but not concurrent writes or mixed read/writes. I posted an...
... if you ... scale ... I guess it seems to me that a :hold requires too much analysis, and is too difficult to maintain. To be useful, it must be placed...
... Well, if you object isn't mutable (everyone just reads) then there is no need for any sort of locking/mutex at all, non-mutable data structures are of...
Joakim HÃ¥rsman
joakim.harsman@...
Oct 24, 2005 1:39 pm
1809
You seem to be describing the situation tailor-made for a reader-writer lock (where readers do not block other readers, writers block readers until the write...
... As far as I can tell, the .NET ReaderWriterLock cannot be used to synchronise access to shared resources from Dyalog APL Threads because two Dyalog APL...
Hmmm, that could cause a problem -- any use of .Net's Monitor mechanism ("Lock" keyword in C#) could deadlock if that's the case. (Suppose Dyalog threads A...
This is essentially the same observation I made in 1998 in http://www.cosy.com/language/lowdown.htm about not forgetting the "ding an sich" : " The objects...
... 'Any?' 480 or so during these 3 days, but most from scenery and architecture. But I have a few nice shots from the conference as well ;) Will publish them...
I too have a few pixs, even a small low rez short movie of a guitar player and a singing audience... ... __________________________________ Yahoo! FareChase:...
Joakim, James, Stefano --- thanks for your comments. Maria, sorry to keep you waiting ;) Here is my solution: Threads are themselves a type of instance. ...