broken promises

Apple Fires Back at Windows 7 in New Ads

Mashable!  Thu, 10/22/2009 - 21:59

get-a-macApple’s “I’m a PC” and “I’m a Mac” dynamic ad duo are at it again in three new “Get a Mac” commercials that


 

C++ Futures

Lambda the Ultimate - Programming Languages Weblog  Wed, 03/04/2009 - 10:13

The next C++ standard is supposed to include futures in the libraries. Futures allow assignment to a value that is to be calculated at a later time - assigning a promise in lieu of the final value until such time as it becomes available.

The current thread carries on until the value is actually needed, at which time the value is made available or a the thread goes into a wait state.

Being a library facility, instead of a built-in language facility as in Oz or Alice-ML, the use of futures is not nearly as transparent.

Still, one should be able to get a similar effect.