Tagged Questions

The `*` operator as used in Ruby. So called because it looks like an insect that's splatted on a windscreen.

learn more… | top users | synonyms

25
votes
3answers
3k views

What is the * operator doing to this string in Ruby

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 ...
16
votes
7answers
4k views

proper name for python * operator?

What is the correct name for operator *, as in function(*args)? unpack, unzip, something else?
11
votes
3answers
4k 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 ...
7
votes
3answers
262 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 ...
5
votes
2answers
134 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 ...
5
votes
2answers
136 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
147 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
2answers
227 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?
4
votes
1answer
78 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
73 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, ...
4
votes
3answers
164 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 ...
4
votes
1answer
273 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?
3
votes
2answers
71 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) ...
3
votes
1answer
33 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)); ...
3
votes
2answers
227 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 ...
3
votes
3answers
380 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
150 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 ...
2
votes
5answers
200 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 ...
1
vote
1answer
53 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"]]
1
vote
2answers
188 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 ...
1
vote
1answer
228 views

What does the * (star) mean in Ruby? [closed]

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 ...
1
vote
3answers
252 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!
1
vote
2answers
783 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 ...
0
votes
2answers
46 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 ...
0
votes
1answer
285 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 ...
0
votes
2answers
238 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 ...