The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
53 views

How to get Enum object by value in C#?

I recently encountered a case when I needed to get an Enum object by value (to be saved via EF CodeFirst), and here is my Enum: public enum ShipmentStatus { New = 0, Shipped = 1, Canceled = 2 } ...
0
votes
2answers
65 views

How is an Enumerable converted to a Dictionary?

I have the following code from MSDN sample: if (sheetData.Elements<Row>().Where(r => r.RowIndex == rowIndex).Count() != 0) { row = sheetData.Elements<Row>().Where(r => ...
0
votes
2answers
45 views

Looking for proper container / functions for enumerable in c++

I am trying to convert some code from c# to c++ but lack of dictionary tables/enumerables etc making me difficult to get the result needed in c++. Can anyone help with the type of container/methods to ...
2
votes
2answers
89 views

Implementing chained iterators in a Ruby C extension

I see that there's a relatively new feature in Ruby which allows chained iteration -- in other words, instead of each_with_indices { |x,i,j| ... } you might do each.with_indices { |x,i,j| ... }, where ...
1
vote
3answers
48 views

Why does Enumerable#find/#detect return an Array even when called on an Hash?

The documentation for Enumerable#find/#detect says: find(ifnone = nil) { |obj| block } → obj or nil find(ifnone = nil) → an_enumerator Passes each entry in enum to block. Returns the first ...
1
vote
0answers
53 views

Switching the receiver and the argument of `Enumerable#inject`

When Enumerable#inject is used, most of the times, we want the result to be the same class (and often the same object) as the initial object that appears as the argument of inject. For example, we use ...
1
vote
2answers
36 views

ruby pick (select) indices from collection

I have an array a. I want to build a new array with one or more of its elements picked out. The resulting array should look like: [a[5], a[7], a[8]] How can I do this selection by passing the ...
0
votes
2answers
81 views

Get length of array property in internal class in C#, or other iteration method that works?

I have a set of C# classes generated by the json2charp web utility from a JSON response resulting from a REST call. I use the classes to deserialize future JSON responses into those classes. ...
0
votes
0answers
22 views

rails group_by correct, can I access individual group by the group id?

I have grouped a series of Visit objects defined in my model together by a visittype_id. However, any calls to access an individual group by the group key fails. I assume this is because the group_by ...
3
votes
1answer
54 views

What's the best way to return an Enumerator::Lazy when your class doesn't define #each?

Enumerable#lazy relies on your enumerable providing an #each method. If your enumerable doesn't have an #each method you can't use #lazy. Now Kernel#enum_for and #to_enum provide the flexibility to ...
2
votes
2answers
85 views

why does Enumerator include Enumerable

Dig this, here is a cool Enumerator (lazy sequence) from 1 to (the biggest Float Ruby can represent): 1.9.3-p327 :014 > e = (1..Float::INFINITY).each Look at how we can grab the front of the ...
2
votes
2answers
64 views

What is the right use case for Enumerable#all? and Enumerable#each in Ruby?

I keep getting confused with the use case of Enumerable#all? and Enumerable#each. For example ['.txt', '-hello.txt'].all? do |suffix| puts "temp#{suffix}" end works for me and also ...
0
votes
2answers
50 views

How to check if an appropriate enumerable is a palindrome

Obviously, a hash would not work for this kind of test. Anyways, here's what I have so far: module Enumerable def palindrome? arr = [] self.reverse_each do |x| arr << x end ...
6
votes
4answers
106 views

ruby array (enumerable) method to select and reject into 2 arrays in 1 operation

# this code works list = (0..20).to_a # => [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20] odd = list.select { |x| x.odd? } # => [1, 3, 5, 7, 9, 11, 13, 15, 17, 19] ...
0
votes
1answer
40 views

Do I need an Enumerator for this?

I want to do this: <div class="menu"> <%- render_menu do |title,path,children| %> <%= link_to title, path %> <div class="submenu"> <%= ...
1
vote
1answer
25 views

How to compare a class to any other arbitrary class via include? method

I have implemented comparable and enumerable so that I can use comparisons and include: Given the simple class below: class Card include Comparable include Enumerable attr_accessor :value ...
0
votes
1answer
61 views

undefined method `assoc' for #<Hash:0x10f591518> (NoMethodError)

I'm trying to return a list of values based on user defined arguments, from hashes defined in the local environment. def my_method *args #initialize accumulator accumulator = Hash.new(0) ...
0
votes
4answers
64 views

how to create array with n number of bytes?

How to create byte[] digits; with n number of bytes? I know I can do Enumerable.Range(1, n).ToArray(); but this creates an int[]. Is there a way to create a byte[]? My priority is a fast ...
0
votes
2answers
34 views

How do you put multiple values into one variable or field without using a list and then parsing?

Sometimes there is a need to have multiple values in one variable or database field, even though that violates relational normalization principles. In python and other languages that support lists, ...
3
votes
5answers
70 views

Ruby: cleaner returns from loop iteration methods

I find that I frequently have methods that iterate through an enumerable in order to return a different enumerable or a hash. These methods almost always look like this simplistic example: def ...
0
votes
1answer
39 views

How do I limit loading of a particular Ruby module based on the version of Ruby

Lazy evaluation of enumerables has been included in Ruby 2.0: http://railsware.com/blog/2012/03/13/ruby-2-0-enumerablelazy/ I would like to include this notation (.lazy) in an application I'm writing ...
0
votes
2answers
70 views

Efficient way to group this ruby array of objects

I have an array of instances of model Foo. Foo is an Ohm based data store. Each instance of Foo has an_id and integer attributes such as follows, likes. If there are two instances of Foo with the same ...
3
votes
3answers
78 views

What does the multiplication symbol :* do?

In particular, using inject, the following scripts, puts (1..5).inject {|x, y| x * y} and puts (1..5).inject(:*), both have output 120 as I expected. However, the script print [[1,2], [3,4], ...
4
votes
2answers
108 views

What are the benefits of making properties non-enumerable?

Enumerability is one of the three attributes of a property: writability, enumerability, and configurability. My questions are: What are the benefit of making properties non-enumerable in JavaScript? ...
2
votes
1answer
100 views

Get slice of an Enumerator effectively

I am having troubles getting a slice of an infinite sequence of Enumerator instance in a reasonable time. I first tried drop and take chain, but it hanged forever as drop tried to return an infinite ...
-1
votes
2answers
52 views

Enumerable: is “materialize” an official term? [closed]

Is "materialize" a good name for a code like this, or is there a better (and official) one? enumerable as ICollection<T> ?? enumerable .ToArray() EDIT: I clarified the code (and its purposes) ...
0
votes
2answers
63 views

How do I extract the hash from an array of one hash?

I'm writing an API parser at the moment, and I'm working on formatting the data nicely. So far, I have the following code: data.each {|season| episodes[season["no"].to_i] = ...
3
votes
1answer
59 views

Symbol vs. Proc in `Enumerable#inject`

Given that Enumerable#inject can take either a symbol or a block as the method to be used in the iteration, as explained in an answer to this question, is there any reason to use the & in ...
2
votes
1answer
82 views

JavaScript: assigning a value to a non enumerable property changes it to enumerable?

I think I'm misunderstanding something here. I have an object that contains a property that I wish to be non enumerable. I want to be able to assign values to it from within the object's functions ...
1
vote
1answer
46 views

Enumerable changes my `to_json` behavior

I have a rails application and a class I've wrote as a part of it (not an ActiveRecord or anything..). The data is stored in simple instance variables (string, integers, arrays...) When I invoke ...
2
votes
2answers
84 views

Understanding find function on an Enumerable in Ruby

I am reading "Practical Ruby for System Administration" by Andre Ben Hanou, which has a one-liner that lists all files in a directory whose size is bigger than 1KB and then sorted by the modification ...
1
vote
2answers
50 views

Order a Collection by a List<int>

I have a Collection of Products. Each product has a ProductId (int) property. I also have a List<int> with one entry for each ProductId. I need to order by Collection<Products> by the ...
0
votes
1answer
51 views

MySql - Using Tables instead of Enum…how do I make a foreign key on a value I have to insert manually?

If the employee is in department "red", I want to make a sub category. Since I am using tables instead of enum for this, I have to insert the static department field values manually. How would I make ...
1
vote
1answer
229 views

Dynamic LINQ, Select function, works on Enumerable, but not Queryable

I have been fiddling with dynamic LINQ for some time now, but I have yet to learn its secrets. I have an expression that I want to parse that looks like this: "document.LineItems.Select(i => ...
0
votes
1answer
96 views

How to use Ruby's Enumerable .map method to do something similar to map in C++

map(-30, -89.75, 89.75, 0, 360) I'm looking for something like this where: -30 is the input value. -89.75 to 89.75 is the range of possible input values 0 - 360 is the final range to be mapped ...
0
votes
2answers
68 views

Weird behavior for Enumerable.Range(starts, count) [duplicate]

Possible Duplicate: Enumerable giving unexpected output Look at my code. Why does the Enumerable.Range() behave differently whether the start value is 0. class Program { static void ...
1
vote
2answers
107 views

Ruby Flatten Enumerable Array Into Multiple Subarrays?

I have the following code: >[['string', 'User'], Foo.all.map {|c| ["number", c.name]}, ['number', 'Average Time']] => [["string", "User"], [["number", "Bar1"], ["number", "Bar2"], ["number", ...
0
votes
3answers
96 views

each_slice ruby with a skip the first x slices

I have a backup script, which I take all the objects in a directory, and then with each slice of 30,000 I back them up to S3. My questions is now that I have over 100,000 objects, I would like to ...
4
votes
5answers
253 views

Idiomatic Ruby filter for nil-or-empty?

I'm looking for a more idiomatic way to filter out nil-or-empty elements of an array. I have many methods of the form: def joined [some_method, ...
2
votes
3answers
73 views

Ruby hash interpolation

I have a hash of mixed types: stuff = {:pack_one => ["blue_item", "red_item"], :pack_two => [:green_item, :purple_item, :yellow_item]} And I need to convert that into a sentence like: ...
3
votes
2answers
106 views

Enumerators in Ruby

I'm having a trouble understanding Enumerators in Ruby. Please correct me If I'm wrong, o.enum_for(:arg) method is supposed to convert object to Enumerator and every iteration over object o should ...
1
vote
4answers
325 views

IQueryable or IList

I am querying a database and producing a list of object from it. Normally from my business layer I return this list of objects cached of type IList. If I change this to return IQueryable, what is ...
3
votes
2answers
93 views

Ruby Enumeration: Taken first n where block returns true

I want to take the first "n" entries which pass the block a = 1..100_000_000 # Basically a long array # This iterates over the whole array -- no good b = a.select{|x| x.expensive_operation?}.take(n) ...
3
votes
3answers
86 views

Ruby enumerables don't keep the same class

I have a class that represents a collection. I included the Enumerable module into it and defined the method #each, so that I get all its methods. But the problem is that Enumerable's methods don't ...
3
votes
1answer
196 views

Saving an IEnumerable Model

I have a view that has 2 date pickers, one of which is a start date and the other of which is end date. I am able to get the user to select the start and end dates, redirect to a view that will have ...
4
votes
2answers
86 views

Is there an idiomatic way to operate on 2 arrays in Ruby?

a = [3, 4, 7, 8, 3] b = [5, 3, 6, 8, 3] Assuming arrays of same length, is there a way to use each or some other idiomatic way to get a result from each element of both arrays? Without using a ...
0
votes
1answer
271 views

Rails Active Record Relations to Enumerable

In certain cases when I get an ActiveRecord Relation I'm experiencing strange behavior with .each on an ActiveRecord::Relation It seems to be when ActiveRecord::Relation delegates :each to :to => ...
0
votes
4answers
263 views

C# Get accessor is inaccessible

I have the following class definition: public static string SplitString(string someText) { var queryArray = Regex.Split(someText, "\\s+(?=\\w+)"); foreach (var i in Enumerable.Range(0, ...
0
votes
3answers
723 views

Ruby yield example explanation?

I'm doing a SaaS course with Ruby. On an exercise, I'm asked to calculate the cartesian product of two sequences by using iterators, blocks and yield. I ended up with this, by pure guess-and-error, ...
1
vote
3answers
40 views

propertyIsEnumerable(x) versus x in

I encountered the method o.propertyIsEnumerable(x) in Javascript code. I understand it as a synonym for the x in o construct. Is there a difference? If so, could you show when to use the first ...

1 2 3 4 5