Tagged Questions
The collect tag has no wiki summary.
16
votes
2answers
2k views
Ruby - Difference between map and collect?
I have Googled this and got patchy / contradictory opinions - is there actually any difference between doing a map and doing a collect on an array in Ruby/Rails?
The docs don't seem to suggest any, ...
15
votes
2answers
3k views
Linq Map! or Collect!
What is the Linq equivalent to the map! or collect! method in Ruby?
a = [ "a", "b", "c", "d" ]
a.collect! {|x| x + "!" }
a #=> [ "a!", "b!", "c!", "d!" ]
I could do this by ...
6
votes
5answers
702 views
I want my memory back! How can I truly dispose a control?
I have an application I am making that creates a large number of windows controls (buttons and labels etc). They are all being made dynamically through functions. The problem I'm having is, when I ...
5
votes
7answers
935 views
Map an array modifying only elements matching a certain condition
In Ruby, what is the most expressive way to map an array in such a way that certain elements are modified and the others left untouched?
This is a straight-forward way to do it:
old_a = ["a", "b", ...
3
votes
6answers
255 views
what's different between each and collect method in Ruby
a = ["L","Z","J"].collect{|x| puts x.succ} #=> M AA K
print a.class #=> Array
b = ["L","Z","J"].each{|x| puts x.succ} #=> M AA K
print b.class #=> Array
From the this code I don't ...
3
votes
2answers
232 views
Scala Option's collect method doesn't like my PartialFunction
I think I'm missing something:
scala> Some(1) collect ({ case n if n > 0 => n + 1; case _ => 0})
res0: Option[Int] = Some(2)
scala> None collect ({ case n if n > 0 => n + 1; ...
3
votes
2answers
233 views
Perl class attribute composition?
Suppose I have multiple roles, each one defining a set of items:
package A;
use Moose::Role;
sub items () { qw/apple orange/ }
package B;
use Moose::Role;
with 'A';
sub items () { qw/watermelon/ }
...
2
votes
5answers
465 views
Question on Ruby collect method
I have an array of hashes
Eg:
cars = [{:company => "Ford", :type => "SUV"},
{:company => "Honda", :type => "Sedan"},
{:company => "Toyota", :type => "Sedan"}]
# i ...
1
vote
1answer
76 views
Oracle PL/SQL Bulk Collect into one column of collection based on condition
I have the following table in one schema: User_Codes(useri_id, user_code). I want to access this table from another schema in a stored proc and minimize the number of round trips between schemas.
In ...
1
vote
1answer
40 views
How can I use a named scope in my model against an array of items?
I know that I can do a query for recent books based on an array as in
scope :recent_books, lambda {|since_dt| {:conditions=>{:created_at >= since_dt}}}
but how can I do a similar query when I ...
1
vote
4answers
387 views
Scala, Collect double case
Hi
How to transform this
for (w <- m ){
val w = (w._2.collect {
case x if (x._2 > 0) => x._2;
case x if (x._2 < 0) => x._2 }) // if I add here .sum i got sum of (negative ...
0
votes
1answer
27 views
Argument error in collect object Rails 3
Guys I'm using a select() tag in .html.erb file as follows
<%= select(:hfi_id, b.beneficiaryloans.collect { |h| [User.find(h.hfi_id).firstname, h.hfi_id] }) %>
what's wrong in this statement? ...
0
votes
1answer
19 views
Scanning displayed text on BlackBerry device at runtime
Is it possible to scan all the text that is being displayed on BlackBerry screen at run-time? We have a project that needs to collect the common English wording used in mobile devices.
0
votes
1answer
26 views
Getting values of text displayed on the screen of Android device
I have a project that is concerned with gathering all the common words used on mobile devices. Is it technically feasible to collect all the text that is being displayed on the screen of Android ...
0
votes
1answer
159 views
Number of likes for a photo or album thru the API
Is it possible to get the number of likes for a photo or album using facebook's API?
This is a link to the open graph for an album
http://graph.facebook.com/99394368305
but it doesn't have the ...
0
votes
2answers
94 views
Ruby use collect/map with an attribute of a table
I have students who took 'tests', which have 5 'questions'. What I want to do is to show the max 'score' for each question for each test.
Test, Student, Question are all separate table.
class Test ...
0
votes
4answers
155 views
How to retrieve Nth item in dictionary? [closed]
Possible Duplicate:
How do I get the nth element from a Dictionary?
If there's a Dictionary with total of Y items and we need Nth item when N < Y then how to achieve this?
Example:
...
0
votes
2answers
54 views
Need help to gather data from a txt file and insert in a web page?
could someone advise me on the most efficient way to gather data from one source, select a specific piece of data and insert it in a web page? Specifically, I wish to:
Call up this buoy data text ...
0
votes
2answers
226 views
PHP array collect
I have alphabet array 24 character: "A B C D E F G H I J K L M N O P Q R S T U V W X"
I want collect all case with: 3 unique characters.
First case: ABC, ...
-2
votes
8answers
431 views
Scala List addition
We have a list
val dane = List(("2011-01-04",-137.76),
("2011-01-04",2376.45),
("2011-01-04",-1.70),
("2011-01-04",-1.70),
("2011-01-04",-1.00),
...