- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Re: something like Clojure's "doto"?
Fri, 2009-07-17, 08:00
(sorry I originally replied only to andreas)
On Sat, Jul 11, 2009 at 11:36 AM, andreas s. wrote:
>
> Hello!
> This seems also impressive to me, now i try to see this construct in a
> broader context. So it's main purpose would be to encapsulate the
> instantiation and method invocation with certain parameters in one
> construct. Am I missing something essential, else here?
I think it's main purpose is to change the self-object in a scope,
which can be used for pleasant DSLish effects :)
From what I understand this is akin to "with" in some languages
(pascal?), or instance_eval in ruby.
The first solutions (albeit cool) is slightly wrong in this sense, as
it forces you to use a receiver.
This:
doto( new java.util.HashMap[String,Int] )( _.put("a",1) )
is no better than
val x = new java.util.HashMap[String,Int]; x.put("a",1)
The second I guess would be the more correct but it forces client side
import. Ideally, one should be able to abstract it away, e.g.
doto(x) { //no additional boilerplate
foo(1) // calls x.foo(1)
bar(2) // calls x.bar(2)
}
and I'd love to know how to do that in scala :)
Fri, 2009-07-17, 13:37
#2
Re: something like Clojure's "doto"?
definitely, I just wrote this mail 4 days ago but sent it to the wrong
address and by the time I re-sent it the other thred had appeared :)
2009/7/17 Detering Dirk :
>> The second I guess would be the more correct but it forces
>> client side import. Ideally, one should be able to abstract
>> it away, e.g.
>>
>> doto(x) { //no additional boilerplate
>> foo(1) // calls x.foo(1)
>> bar(2) // calls x.bar(2)
>> }
>
>
> Hmmm. That would allow for the following?
>
> class MyClass {
>
> def someMethod(f: =>Unit) {
> doto(this) f
> }
>
> def otherMethod() { ... }
> }
>
> val x = new MyClass()
>
> x.someMethod {
> otherMethod()
> }
>
>
> If yes, that would be the answer (or better: it is the same question)
> for thread "Question on DSL", because that resembles the Groovy
> closure delegate feature. It would be great for creating
> builder based DSLs.
>
> KR
> Det
>
Fri, 2009-07-17, 14:37
#3
Re: something like Clojure's "doto"?
Hmmm... isn't this essentially just dynamic (as opposed to lexical) scoping? I don't believe there's any way to achieve that directly in scala (please correct me if I'm wrong though).
- Colin
- Colin
Fri, 2009-07-17, 15:17
#4
Re: something like Clojure's "doto"?
On Fri, Jul 17, 2009 at 08:25:16AM -0500, Colin Bullock wrote:
> Hmmm... isn't this essentially just dynamic (as opposed to lexical)
> scoping? I don't believe there's any way to achieve that directly in
> scala (please correct me if I'm wrong though).
Depends on what you mean by "direct", I suppose.
http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk/src/library/scala/uti...
* DynamicVariables provide a binding mechanism where the current
* value is found through dynamic scope, but where
* access to the variable itself is resolved through static
* scope.
Fri, 2009-07-17, 15:27
#5
Re: something like Clojure's "doto"?
Depends on what you mean by "direct", I suppose.
Directly in the syntax supported by the language/compiler. I thought about mentioning DynamicVariable, but it doesn't really add anything in this context that you can't already achieve by passing the receiver as in the examples above.
Plus, using InheritableThreadLocal in any non-trivial application scares the pants off me...
- Colin
Fri, 2009-07-17, 15:47
#6
Re: something like Clojure's "doto"?
On Fri, Jul 17, 2009 at 3:25 PM, Colin Bullock wrote:
> Hmmm... isn't this essentially just dynamic (as opposed to lexical) scoping?
yes, but "this" is already dynamically scoped, such a trick just
allows the user to control the value of it in a scope.
Without thinking of dynamic scope though, it is just syntax sugar in
the same way Pascal's "with" statement is.
> I don't believe there's any way to achieve that directly in scala (please
> correct me if I'm wrong though).
it's just that scala spoils us by making _almost_ everything possible :)
Fri, 2009-07-17, 18:57
#7
Re: something like Clojure's "doto"?
> Hmmm... isn't this essentially just dynamic (as opposed to lexical) scoping?
> I don't believe there's any way to achieve that directly in scala (please
> correct me if I'm wrong though).
woah woah woah wait a second, it can be done with macros, w/out
dynamic scoping, no?? well, at least in languages that have macros :-)
Fri, 2009-07-17, 20:27
#8
Re: something like Clojure's "doto"?
I suspect people are aware of this, but for people who are not: there
was talk of this before, even a draft SIP. See
http://www.nabble.com/Draft-SIP:-Curly-import-for-more-authentic-DSLs-td...
-Arthur
On Fri, Jul 17, 2009 at 10:44 AM, Raoul Duke wrote:
>> Hmmm... isn't this essentially just dynamic (as opposed to lexical) scoping?
>> I don't believe there's any way to achieve that directly in scala (please
>> correct me if I'm wrong though).
>
> woah woah woah wait a second, it can be done with macros, w/out
> dynamic scoping, no?? well, at least in languages that have macros :-)
>
Sat, 2009-07-18, 01:57
#9
Re: something like Clojure's "doto"?
2009/7/17 Arthur Peters :
> I suspect people are aware of this, but for people who are not: there
> was talk of this before, even a draft SIP. See
> http://www.nabble.com/Draft-SIP:-Curly-import-for-more-authentic-DSLs-td...
A draft SIP which got very thoroughly axed. :-)
Sat, 2009-07-18, 09:47
#10
Re: something like Clojure's "doto"?
On Sat, Jul 18, 2009 at 2:50 AM, David MacIver wrote:
> 2009/7/17 Arthur Peters :
>> I suspect people are aware of this, but for people who are not: there
>> was talk of this before, even a draft SIP. See
>> http://www.nabble.com/Draft-SIP:-Curly-import-for-more-authentic-DSLs-td...
>
> A draft SIP which got very thoroughly axed. :-)
>
I would still love the option to more easily thread an implicit.
transaction { _t =>
implicit val t = _t
x
}
for me is very boilerplatey when x is only two or three lines, I'd be happy with
transaction { implicit t =>
x
}
though. Its far less distracting, does anyone know why this isn't
allowed, in terms of language design? It seems to follow the general
language patterns quite closely.
Sat, 2009-07-18, 16:27
#11
Re: something like Clojure's "doto"?
I like this syntax. It's very much in line with the other implicit declarations.
On Sat, Jul 18, 2009 at 5:40 AM, Chris Twiner <chris.twiner@gmail.com> wrote:
--
Daniel C. Sobral
Something I learned in academia: there are three kinds of academic reviews: review by name, review by reference and review by value.
On Sat, Jul 18, 2009 at 5:40 AM, Chris Twiner <chris.twiner@gmail.com> wrote:
On Sat, Jul 18, 2009 at 2:50 AM, David MacIver<david.maciver@gmail.com> wrote:
> 2009/7/17 Arthur Peters <arthur.peters@gmail.com>:
>> I suspect people are aware of this, but for people who are not: there
>> was talk of this before, even a draft SIP. See
>> http://www.nabble.com/Draft-SIP:-Curly-import-for-more-authentic-DSLs-td22719018.html
>
> A draft SIP which got very thoroughly axed. :-)
>
I would still love the option to more easily thread an implicit.
transaction { _t =>
implicit val t = _t
x
}
for me is very boilerplatey when x is only two or three lines, I'd be happy with
transaction { implicit t =>
x
}
though. Its far less distracting, does anyone know why this isn't
allowed, in terms of language design? It seems to follow the general
language patterns quite closely.
--
Daniel C. Sobral
Something I learned in academia: there are three kinds of academic reviews: review by name, review by reference and review by value.
Sat, 2009-07-18, 16:37
#12
Re: something like Clojure's "doto"?
An alternative syntax for importing arguments could be,
{ |CONTEXT| =>
BODY
}
as syntactic sugar for,
{ CONTEXT =>
import CONTEXT._
BODY
}
with the possibility of importing n arguments,
{ x, |y|, |z| => /* imports y._ and z._ but not x._ */ }
or without naming the argument,
{ |_| => /* imported argument remains unnamed */ }
and with explicit types,
{ |x: Foo|, |y: Bar| => ... }
alex
(with apologies to the Ruby syntax)
{ |CONTEXT| =>
BODY
}
as syntactic sugar for,
{ CONTEXT =>
import CONTEXT._
BODY
}
with the possibility of importing n arguments,
{ x, |y|, |z| => /* imports y._ and z._ but not x._ */ }
or without naming the argument,
{ |_| => /* imported argument remains unnamed */ }
and with explicit types,
{ |x: Foo|, |y: Bar| => ... }
alex
(with apologies to the Ruby syntax)
Sat, 2009-07-18, 22:17
#13
Re: something like Clojure's "doto"?
I'd rather just use { import context => }, as import is already a keyword.
On Sat, Jul 18, 2009 at 12:35 PM, Alex Boisvert <boisvert@intalio.com> wrote:
--
Daniel C. Sobral
Something I learned in academia: there are three kinds of academic reviews: review by name, review by reference and review by value.
On Sat, Jul 18, 2009 at 12:35 PM, Alex Boisvert <boisvert@intalio.com> wrote:
An alternative syntax for importing arguments could be,
{ |CONTEXT| =>
BODY
}
as syntactic sugar for,
{ CONTEXT =>
import CONTEXT._
BODY
}
with the possibility of importing n arguments,
{ x, |y|, |z| => /* imports y._ and z._ but not x._ */ }
or without naming the argument,
{ |_| => /* imported argument remains unnamed */ }
and with explicit types,
{ |x: Foo|, |y: Bar| => ... }
alex
(with apologies to the Ruby syntax)
--
Daniel C. Sobral
Something I learned in academia: there are three kinds of academic reviews: review by name, review by reference and review by value.
Sat, 2009-07-18, 22:57
#14
Re: something like Clojure's "doto"?
that doesn't do the same thing however.
{ import _._ }
looks pretty strange though.
This was the good thing about the import syntax ( {: or indeed |x| )
you could do both an import of members (default behaviour) or use it
to thread implicits.
On Sat, Jul 18, 2009 at 11:07 PM, Daniel Sobral wrote:
> I'd rather just use { import context => }, as import is already a keyword.
>
> On Sat, Jul 18, 2009 at 12:35 PM, Alex Boisvert
> wrote:
>>
>> An alternative syntax for importing arguments could be,
>>
>> { |CONTEXT| =>
>> BODY
>> }
>>
>> as syntactic sugar for,
>>
>> { CONTEXT =>
>> import CONTEXT._
>> BODY
>> }
>>
>> with the possibility of importing n arguments,
>>
>> { x, |y|, |z| => /* imports y._ and z._ but not x._ */ }
>>
>> or without naming the argument,
>>
>> { |_| => /* imported argument remains unnamed */ }
>>
>> and with explicit types,
>>
>> { |x: Foo|, |y: Bar| => ... }
>>
>> alex
>> (with apologies to the Ruby syntax)
>>
>
>
>
> --
> Daniel C. Sobral
>
> Something I learned in academia: there are three kinds of academic reviews:
> review by name, review by reference and review by value.
>
> The second I guess would be the more correct but it forces
> client side import. Ideally, one should be able to abstract
> it away, e.g.
>
> doto(x) { //no additional boilerplate
> foo(1) // calls x.foo(1)
> bar(2) // calls x.bar(2)
> }
Hmmm. That would allow for the following?
class MyClass {
def someMethod(f: =>Unit) {
doto(this) f
}
def otherMethod() { ... }
}
val x = new MyClass()
x.someMethod {
otherMethod()
}
If yes, that would be the answer (or better: it is the same question)
for thread "Question on DSL", because that resembles the Groovy
closure delegate feature. It would be great for creating
builder based DSLs.
KR
Det