Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I agree that it is a bug to use Symbol#to_proc or Object#returning in merb, however I suggest that neither of these things are "clever."

Instead, I note that neither of these things are part of the standard library today. Which means, you must open the Object or Symbol classes to implement them. Nothing wrong with that in your code, but when you do so in a framework like merb (or Rails!), everyone using your framework gets your little patches in their namespace as well.

My feeling is that with the way Ruby's global class namespace works today, opening a core class has much more serious consequences when you are writing a framework, gem, or plug-in then when you are writing code that does not have "downstream clients."



Yup. Everything shoved into the dictionary named Smalltalk, including "isA" methods for every subsystem you've written shoved up to Object isn't a big deal for in-house development. When you publish a library or grab one from somewhere, then it becomes a big problem. Then you want namespaces.

So the real-world experience for Smalltalk is that the former is mostly FUD. The latter is a real issue. I suspect that this pretty much applies to the other dynamic languages as well.


Well, that's partially false. #to_proc is in 1.9.

I also completely and totally disagree that they're not clever. There is nothing _not_ clever about #returning. It is second only to using inject because you're too lazy to assign to a variable first. Nevermind that every railz0r that does that ignores the fact that they've now assigned N times instead of once.

Clever code, in my mind, is a form of hidden cost. It seems to be what I get paid to deal with (read: remove) the most.


See how our experiences differ? Just the other day I was fixing a bug caused by someone writing:

  def squidget(options = {})
    squid = { :foo => :bar, ... }.merge(options)
    ...
    squid[:bash] = :blitz
  end
The method was returning :blitz instead of the hash that the method was constructing. I changed it to a returning statement and to my eye it looks much more clear what is going on.

Of course, you could add a "return squid" at the end, or just plain "squid," but somehow that seems less clear, since when you start manufacturing the squid, it isn't obvious what you are doing until you reach the end of the method. Witha returning statement, you know right away.

All in all, I feel good about all constructions in Ruby that use blocks to wrap around the stuff they are doing, like

  Foo.transaction do
    ... 
  end
But you're younger than I am, so your brain is probably sharper. Maybe you find it easier to just work directly with imperitive-style code. Many people I know prefer it that way. I know I like to simulate Scheme as much as possible, and use expressions instead of assigning local variables as much as possible. It could be laziness on my part.


assignment evaluation to RHS catches everyone once in a while. I'd have gone with the plain `squid` at the end. Maybe even with a `return` if I was feeling chatty. (It took me a long while to get over my anti-return-for-speed-reasons bias... I'm still working on it sometimes.)

Besides, I'm not that much younger than you. :P

I think it is mostly that you went the lispy route while I took the smalltalk route.

ETA:

actually... I'll go one step further...

`returning` violates "Do the Simplest Thing That Could Possibly Work" flat out without giving you anything in return.


"`returning` violates "Do the Simplest Thing That Could Possibly Work" flat out without giving you anything in return."

We agree on the maxim while disagreeing with how to apply it. For me, "returning" is simpler because it seems to involve fewer moving parts: you don't have to remember to write 'squid' at the end and you get a local variable that is scoped only to the block where it is needed.

To you, it is a gross and needlessly complicated way to write begin; squid = ...; squid; end. I can see how you would feel that way without feeling that way myself.

I'm curious about the aversion to Symbol#to_proc. If you see [...].map(&:name) and think of it as an abbreviation for { |element| element.name }, there isn't much to like.

But coming from Smalltalk, does your brain ever click over and make you think of [...].map(&:name) as meaning "map the message :name over this array"?

I ask because when I think of languages like Smalltalk and Ruby, I go along with Alan kay and thenk of them as being message-oriented rather than object-oriented. Symbol#to_proc seems to fit that somehow in my brain. I dunno how to explain it any other way, it really feels less like an abbreviation to save some characters and more like getting closer to what I am trying to say...




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: