On Wed, Sep 28, 2011 at 12:15, Daniel Solano Gomez wrote:
> On Wed Sep 28 18:52 2011, Daniel Pittman wrote:
>>
>> I have problem that I have been thrashing back and forth over the best
>> design of for a week now, and I can't work out the nicest way to
>> handle it. Specifically, I have a collect
Meikel Brandmeyer writes:
> you can return always a vector.
>
> (fn [] [true])
> (fn [] [true {:foo 12}])
>
> And then use destructuring on the return value.
>
> (let [[value annotations] (...)]
> (when annotations
> ..))
My first idea was to add metadata to the return value, but that does
Hi,
you can return always a vector.
(fn [] [true])
(fn [] [true {:foo 12}])
And then use destructuring on the return value.
(let [[value annotations] (...)]
(when annotations
..))
Sincerely
Meikel
--
You received this message because you are subscribed to the Google
Groups "Clojure" gr
On Wed Sep 28 18:52 2011, Daniel Pittman wrote:
> G'day.
>
> I have problem that I have been thrashing back and forth over the best
> design of for a week now, and I can't work out the nicest way to
> handle it. Specifically, I have a collection of functions that return
> a primary result, and mi
G'day.
I have problem that I have been thrashing back and forth over the best
design of for a week now, and I can't work out the nicest way to
handle it. Specifically, I have a collection of functions that return
a primary result, and might also return a secondary "annotation" about
that result.