Tagged Questions
The andand tag has no wiki summary.
5
votes
2answers
117 views
Is there a Python library (or pattern) like Ruby's andand?
For example, I have an object x that might be None or a string representation of a float. I want to do the following:
do_stuff_with(float(x) if x else None)
Except without having to type x twice, ...
4
votes
4answers
316 views
Is there an andand for Perl?
I'd rather do this:
say $shop->ShopperDueDate->andand->day_name();
vs. this:
say $shop->ShopperDueDate->day_name() if $shop->ShopperDueDate;
Any ideas?
(This idea is inspired ...
4
votes
7answers
574 views
Is there a Javascript equivalent of Ruby's andand?
In trying to make my Javascript unobtrusive, I'm using onLoads to add functionality to <input>s and such. With Dojo, this looks something like:
var coolInput = dojo.byId('cool_input');
...
3
votes
1answer
750 views
Avoid object_id warning when using andand in Ruby 1.9?
When I load andand in Ruby 1.9 I get the warning
andand.rb:111: warning: undefining 'object_id' may cause serious problem
Does anyone know a way, other than modifying andand to not remove ...
0
votes
3answers
83 views
andand chain not working properly
im trying to refactor this code of mine:
test_cases.select{ |x| x.script && x.script.versions && !x.script.versions.empty? }
and use the andand gem. Basic usage just tells us that ...