The `*` operator as used in Ruby. So called because it looks like an insect that's splatted on a windscreen.
0
votes
3answers
42 views
Why is splat argument in ruby not used all the time?
I know splat arguments are used when we do not know the number of arguments that would be passed. I wanted to know whether I should use splat all the time. Are there any risks in using the splat ...
1
vote
1answer
26 views
Coffeescript - how do I check string equality when passing string through a splat?
I'm having trouble checking whether two strings are equal when one of them was passed through a splat argument. Because coffeescript uses strict comparisons, and because it makes a copy of the ...
1
vote
1answer
42 views
How to pass an array as an argument list
Ruby's documentation displays method signatures as:
start_with?([prefixes]+) → true or false
which looks like an array to me, but it is not. You can pass a single string or various string as ...
1
vote
2answers
68 views
Please explain this method
I have a question regarding the stars in this method:
def multiplies_array(*numbers)
numbers.inject(1, :*)
end
What is the meaning of the star in the argument list (*numbers)?
And what is the ...
2
votes
3answers
70 views
How to set a default value for a splat argument in Ruby
Setting a default value for a splat argument gives an error:
1.9.3-p374 :001 > def a b, *c = nil
1.9.3-p374 :002?> end
SyntaxError: (irb):1: syntax error, unexpected '=', expecting ';' or ...
1
vote
2answers
90 views
Hash Destructuring
You can destructure an array by using the splat operator.
def foo arg1, arg2, arg3
#...Do Stuff...
end
array = ['arg2', 'arg3']
foo('arg1', *array)
But is there a way to destruct a hash for ...
5
votes
1answer
186 views
Splat on a hash
A splat on a hash converts it into an array.
[*{foo: :bar}] # => [[:foo, :bar]]
Is there some hidden mechanism (such as implicit class cast) going on here, or is it a built-in primitive feature?
...
7
votes
1answer
197 views
What does *:: (asterisk double colon) do in Ruby?
I was poking through the Rails code today and stumbled upon this snippet:
new_date(*::Date._parse(string, false).values_at(:year, :mon, :mday))
What does the asterisk-double-colon (or ...
1
vote
3answers
176 views
Ruby Koans about message passing “send” block & arguments
I am working on Ruby Koans about_message_passing.rb and got the code working for method_missing as follows:
def method_missing(method_name, *args, &block)
@messages << method_name
...
0
votes
2answers
108 views
Splat in argument position
Why does this code
Hash[*[[:first_name, 'Shane'], [:last_name, 'Harvie']].flatten]
return this
{:first_name=>"Shane", :last_name=>"Harvie"}
I know about Array#flatten. But what does the * ...
4
votes
5answers
202 views
How to define a method in ruby using splat and an optional hash at the same time?
I am able to define a method like this:
def test(id, *ary, hash_params)
# Do stuff here
end
But this makes the hash_params argument mandatory. These don't work either:
def t(id, *ary, ...
1
vote
2answers
81 views
Why does this use of the Ruby splat throw an error?
I'd like to allow the user to pass an option to a method that can be either a single object or an array. The below code works, assuming `opts[:variable_length_opt] is defined:
def ...
3
votes
2answers
193 views
Ruby to_s conversion to binary (Splat operator in argument)
If I run the following code, the first two lines return what I expect. The third, however, returns a binary representation of 2.
2.to_s # => "2"
2.to_s * 2 # => "22"
2.to_s *2 # => ...
4
votes
1answer
114 views
Parentheses in block variables
Given
a = [[:a, :b, :c]]
1) I understand this
a.each{|(x, y), z| p z} # => :b
that there are two variables (x, y) and z, so the third element :c is thrown away, and z matches :b. And I ...
3
votes
4answers
236 views
Pass arguments by reference to a block with the splat operator
It seems that the arguments are copied when using the splat operator to pass arguments to a block by reference.
I have this:
def method
a = [1,2,3]
yield(*a)
p a
end
method {|x,y,z| z = 0}
...
3
votes
1answer
245 views
CoffeeScript: Expand array in function call
In Ruby I can call methods with array elements used as positional parameters like this
method(fixed_arg1, fixed_arg2, *array_of_additional_args)
Here the "*" operator expands the array in place.
...
0
votes
1answer
132 views
ActiveRecord Move All Children to Another Record
I have a table with five different has-many relationships to other tables. Before deleting a record, I need to move all of its children to another record. To accomplish this I employ the following ...
1
vote
2answers
241 views
Can you combine keyword argument expansion with regular keyword arguments?
What I want to do is this:
logged_in = {
'logged_in': True,
'username' : 'myself',
}
print render_template('/path/to/template.html',
**logged_in,
title = 'My page title',
more ...
1
vote
1answer
174 views
Ruby's Unary * Operator [duplicate]
Possible Duplicate:
What is the * operator doing to this string in Ruby
I ran across the following code when looking for an easy way to convert an array to a hash (similar to .Net's ...
1
vote
1answer
75 views
Is there a name for the function that returns a positionally-expanding version of its argument?
Consider splatter in this Python code:
def splatter(fn):
return lambda (args): fn(*args)
def add(a, b):
return a + b
list1 = [1, 2, 3]
list2 = [4, 5, 6]
print map(splatter(add), zip(list1, ...
0
votes
1answer
152 views
Is it effcient to use a splat operator in a constructor?
In a constructor, it often happens that you want to turn the arguments into instance variables. A naive way to do it is:
class A
def initialize a, b, c
@a, @b, @c = a, b, c
end
end
...
3
votes
2answers
172 views
Accepting an undefined number of arguments in Ruby/Inline C
I am trying to rewrite a highly recursive function using inline C with Ruby. The function accepts an undefined number of arguments, i.e. it would look like this in Ruby:
def each_entity(*types)
...
4
votes
1answer
162 views
Is there a splat operator (or equivalent) in Matlab?
If I have an array (of unknown length until runtime), is there a way to call a function with each element of the array as a separate parameter?
Like so:
foo = @(varargin) sum(cell2mat(varargin));
...
1
vote
1answer
75 views
What are starred variables in Ruby?
What are starred variables like *arr?
*arr = "sayuj"
=> ["sayuj"]
*arr = *%w{i am happy}
=> ["i", "am", "happy"]
*arr = %w{i am happy}
=> [["i", "am", "happy"]]
6
votes
1answer
347 views
Understanding ruby splat in ranges and arrays
I'm trying to understand the difference between *(1..9) and [*1..9]
If I assign them to variables they work the same way
splat1 = *(1..9) # splat1 = [1, 2, 3, 4, 5, 6, 7, 8, 9]
splat2 = [*1..9] # ...
4
votes
2answers
235 views
How can I splattify an anonymous object so I can use &method on it?
I'm wanting to use the &method(:method_name) idiom when there's more than one object required by method_name. Can I do this under Ruby 1.9?
For example, if I've got
def move_file(old_filename, ...
9
votes
3answers
476 views
Does haskell have a splat operator like python/ruby?
In python / ruby (and others, I'm sure). you can prefix an enumerable with * ("splat") to use it as an argument list. e.g in python:
>>> def foo(a,b): return a + b
>>> foo(1,2)
3
...
0
votes
2answers
136 views
How do I pass an array to a method that accepts an attribute with a splat operator?
If I have a method like:
def sum *numbers
numbers.inject{|sum, number| sum += number}
end
How would I be able to pass an array as numbers?
ruby-1.9.2-p180 :044 > sum 1,2,3 #=> 6
...
6
votes
3answers
392 views
What does the syntax [*a..b] mean in Ruby?
NOTE: mischa's splat on GitHub has lots of cool interactive examples of * in action.
By googling, I found that one way to iterate over a range of numbers in Ruby (your classic C-style for loop)
for ...
5
votes
2answers
506 views
Why invoke “apply” instead of calling function directly?
When looking at the source code for raphael or g.raphael or other libraries I've noticed the developer does something like this:
var val = Math.max.apply(Math, data_array);
Why not just invoke the ...
3
votes
2answers
665 views
Can scala splat be used for anything that isn't a varargs?
given e.g:
scala> def pipes(strings:String*) = strings.toList.mkString("|")
which I can call normally:
scala> pipes("foo", "bar")
res1: String = foo|bar
or with a splat:
scala> val ...
0
votes
1answer
609 views
Ruby 1.9.2 - multiple splat argument issue
New to Ruby and working on a problem where I'm trying to accept multiple splat arguments in the method. I think I understand why it's giving me the compile error, but I'm not sure how to fix it. Any ...
2
votes
2answers
790 views
What does the * symbol do near a function argument and how to use that in others scenarios?
I am using Ruby on Rails 3 and I would like to know what means the presence of a * operator near a function argument and to understand its usages in others scenarios.
Example scenario (this method ...
0
votes
2answers
386 views
Most efficient way to texture splat opengl?
I have to combine up to 17 textures and then render it to a quad (well, 2 triangles) using openGL. I have to render a great deal of these quads - perhaps 500.
I was wondering what the fastest/best ...
6
votes
3answers
1k views
How to pass the 'argument-line' of one PowerShell function to another?
I'm trying to write some PowerShell functions that do some stuff and then transparently call through to existing built-in functions. I want to pass along all the arguments untouched. I don't want to ...
3
votes
1answer
1k views
What does the * (star) mean in Ruby? [duplicate]
Possible Duplicate:
What is the * operator doing to this string in Ruby
Probably there is answer for that elsewhere, but I just don't know how to find it...
If I am right, the * means ...
5
votes
3answers
197 views
What does a * in front of a string literal do in ruby?
This code seems to create an array with a range from a to z but I don't understand what the * does. Can someone please explain?
[*"a".."z"]
5
votes
3answers
585 views
What does this mean in Ruby language?
Run the following code,
a = [1, 2, 3, 4, 5]
head, *tail = a
p head
p tail
You will get the result
1
[2, 3, 4, 5]
Who can help me to explain the statement head,*tail = a, Thanks!
5
votes
1answer
226 views
Unroll / splat arguments in common lisp
Say I have a list of arguments:
> (setf format-args `(t "it's ~a" 1))
(T "it's ~a" 1)
How can I then "splat" or "unroll" this into a series of arguments rather than a single list argument, for ...
38
votes
7answers
10k views
proper name for python * operator? [closed]
What is the correct name for operator *, as in function(*args)? unpack, unzip, something else?
3
votes
2answers
2k views
Making a Hash from an array - how does this work?
fruit = ["apple","red","banana","yellow"]
=> ["apple", "red", "banana", "yellow"]
Hash[*fruit]
=> {"apple"=>"red", "banana"=>"yellow"}
Why does the splat cause the array to be so ...
3
votes
5answers
272 views
What's the splat doing here?
match, text, number = *"foobar 123".match(/([A-z]*) ([0-9]*)/)
I know this is doing some kind of regular expression match but what role does the splat play here and is there a way to do this without ...
5
votes
3answers
188 views
Why is the splat used inside an array definition here?
def initialize(apps, catch=404)
@apps = []; @has_app = {}
apps.each { |app| add app }
@catch = {}
[*catch].each { |status| @catch[status] = true }
end
In this method from Rack::Cascade, ...
5
votes
1answer
321 views
Ruby, Source Code of Splat?
Someone asked about the splat operator yesterday, and I wanted to see the source code... would that be written in C or in Ruby? Where would it be found?
61
votes
4answers
7k views
What does the (unary) * operator do in this Ruby code?
Given the Ruby code
line = "first_name=mickey;last_name=mouse;country=usa"
record = Hash[*line.split(/=|;/)]
I understand everything in the second line apart from the * operator - what is it ...
14
votes
3answers
6k views
Where is it legal to use ruby splat operator?
Splats are cool. They're not just for exploding arrays, although that is fun. They can also cast to Array and flatten arrays (See http://github.com/mischa/splat/tree/master for an exhaustive list of ...
5
votes
2answers
291 views
What's the feature in Ruby that allows “p *1..10” to print out the numbers 1-10?
require 'pp'
p *1..10
This prints out 1-10. Why is this so concise? And what else can you do with it?

