User Geo - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T05:50:48Zhttp://stackoverflow.com/feeds/user/31610http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1946085/are-there-func-objects-with-more-than-4-parameters2Are there Func objects with more than 4 parameters?Geo2009-12-22T12:28:06Z2009-12-22T12:44:45Z
<p>I saw <a href="http://msdn.microsoft.com/en-us/library/system.aspx" rel="nofollow">here</a> that <code>Func<(Of <(T1, T2, T3, T4, TResult>)>) Delegate</code> was the last <code>Func</code> in the namespace. What do you do if you need more than 4 parameters?</p>
http://stackoverflow.com/questions/1930432/how-do-you-create-a-generic-method-in-java-where-one-of-the-parameterized-types-m0How do you create a generic method in Java where one of the parameterized types must implement Iterable?Geo2009-12-18T20:13:26Z2009-12-18T21:19:35Z
<p>Here's the method I'm trying to write ( doesn't compile now, because <code>what</code> is not seen as an Iterable ):</p>
<pre><code>public <T,V> ArrayList<V> mySelect(T what,ITest<V> x) {
ArrayList<V> results = new ArrayList<V>();
for(V value : what) {
if(x.accept(value)) {
results.add(value);
}
}
return results;
}
</code></pre>
<p>The <code>T</code> type implements <code>Iterable</code> , and returns <code>V</code> objects when using <code>foreach</code>. The thing is, I don't know how to write that. Can you help?</p>
http://stackoverflow.com/questions/1917182/need-some-help-with-scalas-instance-variables5Need some help with Scala's instance variablesGeo2009-12-16T19:48:40Z2009-12-18T02:22:40Z
<p>Assume this Java code:</p>
<pre><code>public class A {
public A(String g) {
x += g.length();
}
private int x = 0;
}
</code></pre>
<p>If I create an instance of A, like this:</p>
<pre><code>A a = new A("geo");
</code></pre>
<p>after this call, the value of x will be 3. What am I doing wrong in my Scala code?</p>
<pre><code>class A(val g:String) {
x += g.length
var x:Int = 0
}
object x extends Application {
val x = new A("geo")
println(x.x)
}
</code></pre>
<p>This prints 0. I assumed that when the compiler reaches the <code>var x:Int = 0</code>, the body of the main constructor has ended. Am I wrong? How else could you declare instance variables in Scala ( assuming I don't want them in my constructor ) ?</p>
http://stackoverflow.com/questions/1924363/what-are-the-extensible-languages-people-are-using-today0What are the extensible languages people are using today?Geo2009-12-17T20:31:16Z2009-12-17T20:42:31Z
<p>Wikipedia says:</p>
<blockquote>
<p>Extensible programming is a term used in computer science to describe a style of computer programming that focuses on mechanisms to extend the programming language, compiler and runtime environment.</p>
</blockquote>
<p>For example, Tcl lets you write your own control structures. See <a href="http://wiki.tcl.tk/685" rel="nofollow">here</a>.</p>
<p>I'm interested in compiling a list of extensible programming languages that are being used in real-world code. It would be nice if you could supply an example for your language as well.</p>
http://stackoverflow.com/questions/1920998/is-it-possible-to-curry-the-other-way-around-in-scala3Is it possible to curry the other way around in Scala?Geo2009-12-17T11:04:47Z2009-12-17T18:55:49Z
<p>Let's assume this function:</p>
<pre><code>def autoClosing(f: {def close();})(t: =>Unit) = {
t
f.close()
}
</code></pre>
<p>and this snippet:</p>
<pre><code>val a = autoClosing(new X)(_)
a {
println("before close")
}
</code></pre>
<p>is it possible to curry the first part? Something like:</p>
<pre><code>val a = autoClosing(_) { println("before close") }
</code></pre>
<p>so that I could send the objects on which close should be performed, and have the same block executed on them?</p>
http://stackoverflow.com/questions/1909026/where-can-i-find-documentation-for-scalas-delayed-function-calls0Where can I find documentation for Scala's delayed function calls?Geo2009-12-15T17:26:23Z2009-12-15T19:53:00Z
<p>I saw a <code>delayed</code> example in David Pollak's <code>"Beginning Scala"</code>. I tried to adapt that, by trial and error. Here's what I have:</p>
<pre><code>def sayhello() = {
println("hello")
}
def delaying(t: => Unit):Unit = {
println("before call")
t
println("after call")
}
delaying(sayhello())
</code></pre>
<p>How would you delay a function/method that takes parameters? Why can't I use parantheses when I call <code>t</code>? Where can I find more documentation on delaying functions?</p>
http://stackoverflow.com/questions/1903341/is-it-a-rule-that-unapply-will-always-return-an-option1Is it a rule that unapply will always return an Option?Geo2009-12-14T20:36:32Z2009-12-14T22:11:50Z
<p>I tried to create an <code>unapply</code> method to use in pattern matching, and I tried to make it return something different than <code>Option</code>, however, Eclipse shows that as an error. Is it a rule that <code>unapply</code> must return an <code>Option[T]</code> ?</p>
<p>EDIT: here's the code I'm trying to use. I switched the code from the previous section so that <code>unapply</code> returns a Boolean</p>
<pre><code>import java.util.regex._
object NumberMatcher {
def apply(x:String):Boolean = {
val pat = Pattern.compile("\\d+")
val matcher = pat.matcher(x)
return matcher.find
}
def unapply(x:String):Boolean = {
val pat = Pattern.compile("\\d+")
val matcher = pat.matcher(x)
return matcher.find
}
}
object x {
def main(args : Array[String]) : Unit = {
val strings = List("geo12","neo493","leo")
for(val str <- strings) {
str match {
case NumberMatcher(group) => println(group)
case _ => println ("no")
}
}
}
}
</code></pre>
<p>Eclipse says <code>wrong number of arguments for object NumberMatcher</code>. Why is that?</p>
http://stackoverflow.com/questions/1903126/why-is-this-option-transformed-to-a-string-scala2Why is this Option transformed to a String? [Scala]Geo2009-12-14T19:59:57Z2009-12-14T20:14:17Z
<p>I'm still a Scala noob, and this confuses me:</p>
<pre><code>import java.util.regex._
object NumberMatcher {
def apply(x:String):Boolean = {
val pat = Pattern.compile("\\d+")
val matcher = pat.matcher(x)
return matcher.find
}
def unapply(x:String):Option[String] = {
val pat = Pattern.compile("\\d+")
val matcher = pat.matcher(x)
if(matcher.find) {
return Some(matcher.group())
}
None
}
}
object x {
def main(args : Array[String]) : Unit = {
val strings = List("geo12","neo493","leo")
for(val string <- strings) {
string match {
case NumberMatcher(group) => println(group)
case _ => println ("no")
}
}
}
}
</code></pre>
<p>I wanted to add pattern matching for strings containing digits ( so I can learn more about pattern matching ), and in <code>unapply</code> I decided to return a <code>Option[String]</code>. However, in the println in the NumberMatcher case, <code>group</code> is seen as a String and not as an <code>Option</code>. Can you shed some light? The output produced when this is ran is:</p>
<p><code>12,493,no</code></p>
http://stackoverflow.com/questions/1886953/is-there-a-way-to-control-which-implicit-conversion-will-be-the-default-used1Is there a way to control which implicit conversion will be the default used?Geo2009-12-11T09:48:20Z2009-12-11T12:12:22Z
<p>Suppose I have this:</p>
<pre><code>class String2(val x:String) {
def *(times:Int) : String = {
val builder = new StringBuilder()
for( i <- 0 until times) {
builder.append(x)
}
builder.toString()
}
}
</code></pre>
<p>now if I add this implicit:</p>
<pre><code>implicit def gimmeString2(y:String) = new String2(y)
</code></pre>
<p>I will get a compilation error because stringWrapper also adds this implicit. Is there a way of saying to the compiler "ignore other implicits, use this", so that I don't have to instantiate a <code>String2</code> object and work on that?</p>
<p>I admit the example code may not be the most appropriate ( for this question ), but I think it will do.</p>
http://stackoverflow.com/questions/1686906/what-is-a-very-practical-c-book10What is a very practical C++ book?Geo2009-11-06T11:06:33Z2009-12-11T05:26:34Z
<p>While I agree reading books is always a learning experience, sometimes you'd like to skip the theory and just jump till you reach the practical aspects. For example, I'd like to see a book that tells me that by writing:</p>
<pre><code>char* a = "a string";
</code></pre>
<p>the value of <code>a</code> will (usually) get stored in the readonly portion of an executable, and explain what happens if you try to modify it. I'd like a book that explains why sometimes you need to cast something to a type, then to another, before dereferencing it, or when it all boils down to machine code, what will the difference between references and pointers be.</p>
<p>I'm sure there are other numerous language gotchas and quirks that you only encounter while doing practical stuff, this is why I'd like to find such a book. I hope you can point me towards one.</p>
<p>If it matters, I have previous programming experience, but my area of expertise are higher-level languages.</p>
http://stackoverflow.com/questions/1883775/can-i-use-a-block-when-defining-a-scala-anonymous-function1Can I use a block when defining a Scala anonymous function?Geo2009-12-10T20:26:22Z2009-12-10T21:38:06Z
<p>Let's say I have this method:</p>
<pre><code>def myMethod(value:File,x: (a:File) => Unit) = {
// some processing here
// more processing
x(value)
}
</code></pre>
<p>I know I can call this as:</p>
<pre><code>myMethod(new File("c:/"),(x:File) => println(x))
</code></pre>
<p>Is there a way I could call it using braces? Something like:</p>
<pre><code>myMethod(new File("c:/"),{ (x:File) =>
if(x.toString.endsWith(".txt")) {
println x
}
})
</code></pre>
<p>or do I have to write that in another method and pass that to <code>myMethod</code>? I'd like to mention I'm new at Scala.</p>
http://stackoverflow.com/questions/1873575/how-could-i-get-a-frame-with-a-scrollbar-in-pythons-tkinter0How could I get a Frame with a scrollbar in Python's Tkinter?Geo2009-12-09T12:26:04Z2009-12-10T21:25:24Z
<p>I'm starting to learn about Tkinter. I'd like to have a container widget ( Frame ), where the user could add as many textfields as needed by the application. The application starts with a textfield, and a button below that textfield. When the user presses the button, a new text entry will be added below the first one ( this may be repeated countless times ). In the window's center, there will be a Text widget, used to display text :)</p>
<p>However, I noticed this in the documentation:</p>
<p><code>This widget is used to implement scrolled listboxes, canvases, and text fields.</code></p>
<p>Is there a way to use the Scrollbar with a Frame?</p>
http://stackoverflow.com/questions/1789865/why-cant-i-call-javac-using-the-backquotes-backticks-approach-in-ruby/1873882#18738820Answer by Geo for Why can't I call javac using the Backquotes/Backticks approach in Ruby?Geo2009-12-09T13:25:37Z2009-12-09T13:25:37Z<p>Do this instead:</p>
<pre><code>`C:/java_location/bin/javac.exe arguments`
</code></pre>
<p>And replace the <code>C:/Java_location</code> with the actual location of the JDK. This should work, and you won't need an additional batch file.</p>
http://stackoverflow.com/questions/1805146/where-can-i-find-an-actively-developed-lint-tool-for-ruby2Where can I find an actively developed lint tool for Ruby?Geo2009-11-26T18:45:29Z2009-12-07T16:53:25Z
<p>Most of the code I write is in Ruby, and every once in a while, I make some typo ( which only gets caught after a while ). This can suck when you have your scripts do some long running tasks, and you return to them only to find out you had a typo.</p>
<p>Is there an actively developed lint tool for Ruby that could help me overcome this? Would it be possible to use it across a system that works with a lot of source files ( some of them loaded dynamically )?</p>
<p>EDIT:
Take this snippet as an example:</p>
<pre><code>a = 20
b = 30
puts c
</code></pre>
<p>EDIT: to win bounty, show me a tool that will detect the c variable as not created/undefined.
I'd like something that will alert me that <code>c</code> doesn't exist.</p>
http://stackoverflow.com/questions/1819967/is-using-package-inside-my-methods-bad-for-inheritance3Is using __PACKAGE__ inside my methods bad for inheritance?Geo2009-11-30T13:56:40Z2009-12-07T13:22:21Z
<p>If inside my code I'll have calls like:</p>
<pre><code>__PACKAGE__->method;
</code></pre>
<p>will this limit the usability of this module, if this module is inherited?</p>
http://stackoverflow.com/questions/1852464/which-javascript-code-editor-supports-plain-text-line-numbering0Which Javascript code editor supports plain text line numbering?Geo2009-12-05T15:25:14Z2009-12-06T19:54:22Z
<p>I need to add a text area that also has line numbering capabilities. I tried <code>EditArea</code>, but I couldn't make it work with text files. It would be ideal if it could highlight syntax for existing programming languages, but that would only be a side bonus. </p>
<p>The main thing I'm after is line numbering for whatever I paste in it. Please only list open source ones.</p>
http://stackoverflow.com/questions/1856228/what-is-edge-rails/1856231#18562310Answer by Geo for What is Edge Rails?Geo2009-12-06T18:59:45Z2009-12-06T18:59:45Z<p>It means the latest Rails. The newest :)</p>
http://stackoverflow.com/questions/1849772/what-happens-on-this-my-declaration-perl4What happens on this my declaration? [ Perl ]Geo2009-12-04T21:32:55Z2009-12-06T15:00:13Z
<p>I know the title sounds funny, but I found this snippet somewhere:</p>
<pre><code>my MyPackage $p1 = MyPackage->new;
</code></pre>
<p>What role does the name of the package serve in front of <code>$p1</code>?</p>
<p>EDIT: I'm running perl <code>5.10.1</code>.</p>
http://stackoverflow.com/questions/1852586/is-it-against-google-agreement-to-place-adsense-banners-in-your-post0Is it against google agreement to place adsense banners in your post? [closed]Geo2009-12-05T16:11:17Z2009-12-05T16:11:17Z
<p>Is it against google agreement to put my adsense code in the blog's body? If I disable the adsense support blogger offers, is it ok to manually add it myself whenever I'm writing a post?</p>
<p>I'm asking this because this way I'd have much more control over how ads are placed.</p>
http://stackoverflow.com/questions/1849329/is-there-a-perl-shortcut-to-count-the-number-of-matches-in-a-string2Is there a Perl shortcut to count the number of matches in a string?Geo2009-12-04T20:04:20Z2009-12-05T01:07:52Z
<p>Suppose I have:</p>
<pre><code>my $string = "one.two.three.four";
</code></pre>
<p>How should I play with context to get the number of times the pattern found a match (3)? Can this be done using a one-liner?</p>
<p>I tried this:</p>
<pre><code>my ($number) = scalar($string=~/\./gi);
</code></pre>
<p>I thought that by putting parentheses around <code>$number</code>, I'd force array context, and by the use of <code>scalar</code>, I'd get the count. However, all I get is <code>1</code>.</p>
http://stackoverflow.com/questions/1849699/is-it-possible-to-recursively-require-all-files-in-a-directory-in-ruby/1849777#18497773Answer by Geo for Is it possible to recursively require all files in a directory in Ruby?Geo2009-12-04T21:34:09Z2009-12-04T21:34:09Z<pre><code>require "find"
Find.find(folder) do |file|
next if File.extname(file) != ".rb"
puts "loading #{file}"
load(file)
end
</code></pre>
<p>This will recursively load each <code>.rb</code> file.</p>
http://stackoverflow.com/questions/1007007/what-should-i-write-in-order-to-become-a-better-developer5What should I write in order to become a better developer?Geo2009-06-17T13:26:06Z2009-12-04T11:48:34Z
<p>I tend to finish my work related tasks pretty quickly, and I get to have some free time on my hands. What should I write in order to become a better developer ? I'm familiar with c++/java/perl/python/ruby.</p>
<p>I wrote the following stuff on my own:</p>
<ul>
<li>simple web server</li>
<li>simple web clients (different languages)</li>
<li>DSLs, internal and external</li>
<li>some lexers</li>
<li>code indenters (source beautifiers)</li>
<li>simple IDE</li>
</ul>
<p>I would like some suggestions about some software that would be both challenging and fun to write.</p>
http://stackoverflow.com/questions/1843129/how-could-i-redefine-a-subroutine-and-keep-the-old-one-too5How could I redefine a subroutine and keep the old one too?Geo2009-12-03T21:44:31Z2009-12-04T05:34:45Z
<p>Here's what I'd like to achieve:</p>
<pre><code>sub first {
print "this is original first";
}
*original_first = \&first;
sub first {
print "this is first redefined";
}
original_first(); # i expect this to print "this is original first"
first() # i expect this to print "this is first redefined"
</code></pre>
<p>I thought that by saving the symbol for <code>first</code>, I'd be able to later call the original subroutine ( under the name <code>original_first</code> ) and to also be able to call <code>first</code>, and get the one redefined. However, if I call the <code>original_first</code>, I still get the "this is first redefined". What do I have to do to make this work?</p>
http://stackoverflow.com/questions/1686844/why-isnt-the-ruby-1-9-lambda-call-possible-without-the-dot-in-front-of-the-paren1Why isn't the Ruby 1.9 lambda call possible without the dot in front of the parens?Geo2009-11-06T10:54:04Z2009-12-03T23:59:20Z
<p>I checked out the latest Ruby version, to play a bit with the latest changes. The first thing I tried to do was call a Ruby lambda/block/proc just like you'd do with a Python callable.</p>
<pre><code>a = lambda {|x| puts x}
a.call(4) # works, and prints 4
a[4] # works and prints 4
a.(4) # same
a(4) # undefined method 'a' for main:Object
</code></pre>
<p>Why isn't the last call possible? Will it ever be?</p>
http://stackoverflow.com/questions/1842753/is-tiefile-lazily-loading-a-file2Is Tie::File lazily loading a file?Geo2009-12-03T20:37:28Z2009-12-03T20:56:27Z
<p>I'm planning on writing a simple text viewer, which I'd expect to be able to deal with very large sized files. I was thinking of using <code>Tie::File</code> for this, and kind of paginate the lines. Is this loading the lines lazily, or all of them at once?</p>
http://stackoverflow.com/questions/1828641/how-to-parse-a-uri-like-this-in-java/1828703#18287033Answer by Geo for How to parse a URI like this in JavaGeo2009-12-01T20:29:56Z2009-12-01T20:29:56Z<p>Aren't you better off using <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/net/URLEncoder.html" rel="nofollow">URLEncoder</a> than selectively encoding stuff?</p>
http://stackoverflow.com/questions/1826197/vital-ruby-concepts-to-learn-before-i-jump-into-rails/1826256#18262565Answer by Geo for Vital Ruby concepts to learn before I jump into Rails?Geo2009-12-01T13:42:23Z2009-12-01T13:42:23Z<p>Blocks and a bit of metaprogramming.</p>
http://stackoverflow.com/questions/1822312/how-does-an-object-access-the-symbol-table-for-the-current-package0How does an object access the symbol table for the current package?Geo2009-11-30T20:52:35Z2009-11-30T21:47:39Z
<p>How could I access the symbol table for the current package an object was instantiated in? For example, I have something like this:</p>
<pre><code>my $object = MyModule->new;
# this looks in the current package, to see if there's a function named run_me
# I'd like to know how to do this without passing a sub reference
$object->do_your_job;
</code></pre>
<p>If in the implementation of <code>do_your_job</code> I use <code>__PACKAGE__</code>, it will search in the <code>MyModule</code> package. How could I make it look in the right package?</p>
<p>EDIT:I'll try to make this clearer. Suppose I have the following code:</p>
<pre><code>package MyMod;
sub new {
return bless {},$_[0]
}
sub do_your_job {
my $self = shift;
# of course find_package_of is fictional here
# just for this example's sake, $pkg should be main
my $pkg = find_package_of($self);
if(defined &{ $pkg . '::run_me' }) {
# the function exists, call it.
}
}
package main;
sub run_me {
print "x should run me.\n";
}
my $x = MyMod->new;
# this should find the run_me sub in the current package and invoke it.
$x->do_your_job;
</code></pre>
<p>Now, <code>$x</code> should somehow notice that <code>main</code> is the current package, and search it's symbol table. I tried using <code>Scalar::Util</code>'s blessed , but it still gave me <code>MyModule</code> instead of <code>main</code>. Hopefully, this is a bit clearer now.</p>
http://stackoverflow.com/questions/1815298/do-i-need-to-use-a-class-to-use-its-methods-in-my-subclass-in-perl/1815415#18154150Answer by Geo for Do I need to use a class to use its methods in my subclass in Perl?Geo2009-11-29T12:37:13Z2009-11-29T12:37:13Z<p>In order to access the methods, you'd either have to inherit from it, or delegate to an object of it's type.</p>
http://stackoverflow.com/questions/1813272/is-this-a-good-way-of-testing-perl-code1Is this a good way of testing Perl code?Geo2009-11-28T18:19:43Z2009-11-29T08:11:31Z
<p>I'm writing a module that has some functions dealing with text files. I'm new to testing, so I decided to go with <code>Test::More</code>. Here's how my test file looks like now:</p>
<pre><code>use mymod;
use 5.10.0;
use strict;
use warnings;
use Test::More 'no_plan';
my $file_name = "test.file";
sub set_up {
my $self = shift;
open(my $handle,">",$file_name) or die "could not create file test.file $!\n";
# generate a sample text file here
close($handle);
}
sub tear_down {
my $self = shift;
unlink($file_name) or die "could not delete $file_name $!\n";
}
set_up();
open(my $handle,$file_name) || die "could not open $file_name $!\n";
my @lines = mymod->perform($handle);
is_deeply(\@lines,["expected line","another expected line"]);
close($handle);
tear_down();
</code></pre>
<p>Is this a good way of performing tests? Is it ok to deal with generating the sample input file in my test?</p>
<p>By the way, I started writing this as a <code>Test::Unit</code> test, and then switched to <code>Test::More</code>. That's why the <code>set_up</code> and <code>tear_down</code> functions are there.</p>
http://stackoverflow.com/questions/1946085/are-there-func-objects-with-more-than-4-parameters/1946088#1946088Comment by Geo on Are there Func objects with more than 4 parameters?Geo2009-12-22T12:32:25Z2009-12-22T12:32:25Z.Net 4 will allow an unlimited number? By the way, can you post an example for the <code>Func</code> delegates you're talking about?http://stackoverflow.com/questions/1939952/more-elegant-way-to-do-this-in-ruby/1940092#1940092Comment by Geo on More elegant way to do this in RubyGeo2009-12-21T17:17:26Z2009-12-21T17:17:26ZSince you're capturing variables, why not go for a lambda instead?http://stackoverflow.com/questions/1939952/more-elegant-way-to-do-this-in-ruby/1940062#1940062Comment by Geo on More elegant way to do this in RubyGeo2009-12-21T13:40:40Z2009-12-21T13:40:40ZThe nice thing about this solution is that the array can contain any number of elements.http://stackoverflow.com/questions/1925576/is-it-worth-me-learning-c-as-a-web-developer-will-i-ever-use-it/1925602#1925602Comment by Geo on Is it worth me learning C as a Web Developer? Will i ever use it?Geo2009-12-18T22:03:09Z2009-12-18T22:03:09ZIf he won't use C on a regular basis, it won't do him much good when the time to do so comes.http://stackoverflow.com/questions/1920998/is-it-possible-to-curry-the-other-way-around-in-scala/1923823#1923823Comment by Geo on Is it possible to curry the other way around in Scala?Geo2009-12-17T20:04:11Z2009-12-17T20:04:11ZI'm happy about that too :). I'm giving up Ruby for Scala ... it's got everything I wanted in a language.http://stackoverflow.com/questions/1920998/is-it-possible-to-curry-the-other-way-around-in-scala/1922074#1922074Comment by Geo on Is it possible to curry the other way around in Scala?Geo2009-12-17T14:22:04Z2009-12-17T14:22:04ZCan you explain that monster a bit? :)http://stackoverflow.com/questions/1920998/is-it-possible-to-curry-the-other-way-around-in-scala/1921098#1921098Comment by Geo on Is it possible to curry the other way around in Scala?Geo2009-12-17T11:29:21Z2009-12-17T11:29:21ZKind of verbose. Mersi :)http://stackoverflow.com/questions/1917182/need-some-help-with-scalas-instance-variables/1917902#1917902Comment by Geo on Need some help with Scala's instance variablesGeo2009-12-16T22:02:57Z2009-12-16T22:02:57ZBut how is <code>x</code> treated? As a local variable? Is the compiler declaring it?http://stackoverflow.com/questions/1917182/need-some-help-with-scalas-instance-variables/1917902#1917902Comment by Geo on Need some help with Scala's instance variablesGeo2009-12-16T21:58:29Z2009-12-16T21:58:29ZSo, why wasn't <code>_x</code> 3? That's how I'm reading the code representation.http://stackoverflow.com/questions/1917182/need-some-help-with-scalas-instance-variables/1917525#1917525Comment by Geo on Need some help with Scala's instance variablesGeo2009-12-16T20:45:37Z2009-12-16T20:45:37ZThat's what I thought initially ...http://stackoverflow.com/questions/1917182/need-some-help-with-scalas-instance-variablesComment by Geo on Need some help with Scala's instance variablesGeo2009-12-16T20:20:24Z2009-12-16T20:20:24ZOk, let's wait and see.http://stackoverflow.com/questions/1917182/need-some-help-with-scalas-instance-variables/1917228#1917228Comment by Geo on Need some help with Scala's instance variablesGeo2009-12-16T20:04:54Z2009-12-16T20:04:54ZThank you for explaining what's going on.http://stackoverflow.com/questions/1917182/need-some-help-with-scalas-instance-variables/1917228#1917228Comment by Geo on Need some help with Scala's instance variablesGeo2009-12-16T19:56:30Z2009-12-16T19:56:30ZYeah, but shouldn't I have got a compilation error? If the first <code>x</code> got shadowed ... it was never declared, right?http://stackoverflow.com/questions/1909026/where-can-i-find-documentation-for-scalas-delayed-function-calls/1909070#1909070Comment by Geo on Where can I find documentation for Scala's delayed function calls?Geo2009-12-15T18:34:00Z2009-12-15T18:34:00ZBy name parameter seems to turn up some results. Didn't know the proper name. Thanks Derek!http://stackoverflow.com/questions/1909026/where-can-i-find-documentation-for-scalas-delayed-function-calls/1909070#1909070Comment by Geo on Where can I find documentation for Scala's delayed function calls?Geo2009-12-15T17:46:28Z2009-12-15T17:46:28ZThanks for your answer! It's great! Is there some official documentation on this? I'm not really sure how to google for it, I tried searching for delayed function calls and Scala, but I didn't find anything relevant.