Tagged Questions
The enumerable tag has no wiki summary.
20
votes
2answers
4k views
How do you find a min / max with Ruby?
I want to do something simple and straightforward, like min(5,10), or Math.max(4,7). Are there functions to this effect in Ruby?
10
votes
3answers
404 views
Clean solution to this ruby iterator trickiness?
k = [1,2,3,4,5]
for n in k
puts n
if n == 2
k.delete(n)
end
end
puts k.join(",")
# Result:
# 1
# 2
# 4
# 5
# [1,3,4,5]
# Desired:
# 1
# 2
# 3
# 4
# 5
# [1,3,4,5]
This same effect happens ...
9
votes
2answers
2k views
IEnumerable doesn't have Count
I have the following method:
public bool IsValid
{
get { return (GetRuleViolations().Count() == 0); }
}
public IEnumerable<RuleViolation> GetRuleViolations(){
//code here
}
Why is it ...
9
votes
6answers
8k views
Random array using LINQ and C#
I was reading an article on MSDN Magazine about using the Enumerable class in LINQ to generate a random array. The article uses VB.NET and I'm not immediately sure what the equivalent is in C#:
Dim ...
8
votes
4answers
206 views
Anonymous Type with Linq and Guid
I have a simple table:
ID | Value
When I do this:
var sequence = from c in valuesVault.GetTable()
select new {RandomIDX = Guid.NewGuid(), c.ID, c.Value};
each element in the ...
8
votes
7answers
3k views
What is the best way to modify a list in a foreach?
a new feature in C# / .NET 4.0 is that you can change your enumerable in a foreach without getting the exception. See Paul Jackson's blog for info on this change.
So I'm asking: what is the best way ...
7
votes
2answers
350 views
Code contracts, forall and custom enumerable
I am using C# 4.0 and Code Contracts
and i have my own custom GameRoomCollection : IEnumerable<GameRoom>.
I want to ensure, that no instances of gameroomcollection will ever contain a null ...
6
votes
5answers
130 views
Why does Enumerable.All return true for an empty sequence?
Collection<string> strs = new Collection<string>();
bool b = strs.All(str => str == "ABC");
The code creates an empty collection of string, then try to determine if ...
6
votes
1answer
180 views
Why does Enumerable.ToLookup<>() return an ILookup<,> and not a Lookup<,>?
There is one method in Lookup<,> that is not in ILookup<,>:
public IEnumerable<TResult> ApplyResultSelector<TResult>(
Func<TKey, IEnumerable<TElement>, ...
5
votes
3answers
80 views
generic Enumeration to Iterable converter
HttpServletRequest is using a lot of java.util.Enumeration. I would like to use them in for-each, so i need to convert them into interable. this is not a problem, but I since I have more than one ...
5
votes
1answer
77 views
Returning the differences between two enumerables
I'm trying to determine the differences between two collections.
private ObservableCollection<SomeObject> _objectList = null;
private ObservableCollection<SomeObject> _cachedObjectList = ...
5
votes
2answers
2k views
Possible to access the index in a Hash each loop?
I'm probably missing something obvious, but is there a way to access the index/count of the iteration inside a hash each loop?
hash = {'three' => 'one', 'four' => 'two', 'one' => 'three'}
...
4
votes
2answers
95 views
Is there a method in Ruby that does the opposite of find?
a, b, c = 0, 1, 2
[a, b, c].find(&:zero?) # => 0
Is there any method that finds the first element for which the block returns false?
[a, b, c].the_method(&:zero?) # => 1
In other ...
4
votes
5answers
215 views
Python equivalent of C#'s .select?
I've got an list of objects in Python, and they each have an id property. I want to get a list of those IDs.
In C# I'd write
myObjects.select(obj => obj.id);
How would I do this in Python?
4
votes
3answers
133 views
Enumerable giving unexpected output
class Foo
{
public static IEnumerable<int> Range(int start, int end)
{
return Enumerable.Range(start, end);
}
public static void PrintRange(IEnumerable<int> r)
...
4
votes
4answers
521 views
Generate and repeat number in C#
I want to generate an array that has 144 number from 1->36 in random order (so each number is repeated 4 times). Can we use Enumerable.Repeat and Enumerable.Range to do that. If yes than please ...
4
votes
4answers
2k views
Why is Enumerable.Range faster than a direct yield loop?
The code below is checking performance of three different ways to do same solution.
public static void Main(string[] args)
{
// for loop
{
Stopwatch sw = ...
3
votes
1answer
42 views
JavaScript: How to Define a Non-Enumerable Method without using Object.defineProperty?
I want to add a method to Object, but now all arrays and object have it. When I use for(.. in ..), it is enumarated and this is a problem for my software. So, I need to make my method non-enumerable.
...
3
votes
4answers
104 views
Is there an inverse 'member?' method in ruby?
I often find myself checking if some value belongs to some set. As I understand, people normally use Enumerable#member? for this.
end_index = ['.', ','].member?(word[-1]) ? -3 : -2
However, this ...
3
votes
1answer
138 views
Do LINQ's Enumerable Methods Maintain Relative Order of Elements?
Say I have List<Foo> foos where the current order of elements is important. If I then apply a LINQ Enumerable method such as GroupBy, Where or Select, can I rely on the resulting ...
3
votes
4answers
138 views
Python Equivalent to Ruby's #each_cons?
Is there a Pythonic equivalent to Ruby's #each_cons?
In Ruby you can do this:
array = [1,2,3,4]
array.each_cons(2).to_a
=> [[1,2],[2,3],[3,4]]
3
votes
4answers
1k views
Array#each vs. Array#map
hash = { "d" => [11, 22], "f" => [33, 44, 55] }
# case 1
hash.map {|k,vs| vs.map {|v| "#{k}:#{v}"}}.join(",")
=> "d:11,d:22,f:33,f:44,f:55"
# case 2
hash.map {|k,vs| vs.each {|v| ...
3
votes
5answers
125 views
Possible to turn callback calls into IEnumerable
I'm writing a wrapper around a 3rd party library, and it has a method to scan the data it manages. The method takes a callback method that it calls for each item in the data that it finds.
e.g. The ...
3
votes
2answers
838 views
Ruby: group hashes by keys and sum the values
I have an array of hashes:
[{"Vegetable"=>10}, {"Vegetable"=>5}, {"Dry Goods"=>3>}, {"Dry Goods"=>2}]
I need to use inject here I think but I've really been struggling...
I want a ...
3
votes
6answers
316 views
Cool tricks and expressive snippets with ruby collections/enumerables
What are your favorite code snippets with ruby collections? Preferably they should be discovery for you, be expressive, readable and introduce some fun in your coding practice.
Pattern-matching in ...
3
votes
5answers
189 views
Is there a way to specify an anonymous empty enumerable type?
I'm returning a Json'ed annonymous type:
IList<MyClass> listOfStuff = GetListOfStuff();
return Json(
new {
stuff = listOfStuff
}
);
In certain cases, I know that listOfStuff ...
3
votes
2answers
137 views
How to iterate multiple enumerables in ruby?
I know two arrays can be zipped and the result can be iterated with #each. But how do you do it with an unknown number of enumerables?
Let's say
anand = %w(1-0 0.5-0.5 0.5-0.5 1.0)
carlsen = %w(0-1 ...
3
votes
1answer
1k views
Cast int to Enum in Delphi Prism
Basically the same as this question, but in Delphi Prism:
http://stackoverflow.com/questions/29482/cast-int-to-enum-in-c
I manage to do it from a string:
YourEnum := Enum.Parse(TypeOf(YourEnum), ...
3
votes
4answers
412 views
Equivalent of Ruby Enumerable.collect that returns an Enumerable?
In this code, I create an array of strings "1" to "10000":
array_of_strings = (1..10000).collect {|i| String(i)}
Does the Ruby Core API provide a way to get an enumerable object that lets me ...
3
votes
3answers
188 views
Property with Enumerable or list
I'm playing around with LINQ and related subjects and was wondering about the following.
I've 2 methods of getting a Fibonacci sequence.
I started with:
public static IEnumerable<int> ...
3
votes
3answers
404 views
Does Enumerable.ToDictionary only retrieve what it needs?
I'm using Enumerable.ToDictionary to create a Dictionary off of a linq call:
return (from term in dataContext.Terms
where term.Name.StartsWith(text)
select term).ToDictionary(t => ...
3
votes
2answers
279 views
Does Enumerable.Repeat() do a deep copy?
If I use the following:
var myList = Enumerable.Repeat(myCustomObject, 2);
Will the Second element in the list be a deep copy of the first one?
Note: myCustomObject can be any Object
Edit: ...
3
votes
4answers
3k views
How can I make DataTable enumerable?
I cannot use AsEnumerable() on DataTable, I'm using C# 3 but I'm just targeting 2.0 framework (LINQ capability is courtesy of LINQBridge). Is there any way I can make DataTable enumerable without ...
2
votes
6answers
107 views
How to traverse this hash within one line?
Each key in a hash has a value that's also a hash.
{
100 => {
1 => 'ruby',
2 => 'enumerables'
},
50 => {
3 => 'can',
4 => 'cause'
},
...
2
votes
1answer
68 views
Extend Enumerable.Range [closed]
Possible Duplicate:
Enumerable.Range implementation
I ran into an issue where i need to add a very long value (Int64) into a list, The value is 600851475143, i want to create a ...
2
votes
3answers
56 views
In Ruby, is there a method similar to `any?` which returns the matching item (rather than `true`)
>> [1, 2, 3, 4, 5].any? {|n| n % 3 == 0}
=> true
What if I want to know which item matched, not just whether an item matched? I'm only interested in short-circuiting solutions (those that ...
2
votes
2answers
131 views
How to convert a 'Y' or 'N' Value to a boolean value using linq?
I have this function of mine which selects all room types from the database, I am converting values from a data table to a generic list to optimize the speed of the system that i am creating my ...
2
votes
1answer
119 views
Ruby: Yield within enumerable
I'd like to be able to yield within an enumerable block, in order to create some boilerplate benchmarking code.
Basically I'd like to do something this (simplified):
def iterator( enumerable, ...
2
votes
5answers
90 views
What's the shortest way to see if all the elements are not nil?
Is there a more direct way to do this?
[1, nil, 2, 'a'].all? {|x| x}
2
votes
1answer
112 views
Ruby library function to transform Enumerable to Hash
Consider this extension to Enumerable:
module Enumerable
def hash_on
h = {}
each do |e|
h[yield(e)] = e
end
h
end
end
It is used like so:
people = [
...
2
votes
4answers
134 views
Should a GetEnumerator method still be idempotent when the class does not implement IEnumerable
This question piggy backs of another question which I raised regarding abusing the IEnumerable interface by modifying an object as you iterate over it.
The general consensus is that no anything that ...
2
votes
2answers
949 views
Please explain System.Linq.Enumerable.Where(Func<T, int, bool> predicate)
I can't make any sense of the MSDN documentation for this overload of the Where method that accepts a predicate that has two arguments where the int, supposedly, represents the index of the source ...
2
votes
2answers
400 views
Is there anything like Enumerable.Range(x,y) in Java?
Is there something like C#/.NET's
IEnumerable<int> range = Enumerable.Range(0, 100); //.NET
in Java?
2
votes
3answers
299 views
Problem in populating a dictionary using Enumerable.Range()
If I do
for (int i = 0; i < appSettings.Count; i++)
{
string key = appSettings.Keys[i];
euFileDictionary.Add(key, appSettings[i]);
}
It is working fine.
When I am trying the same thing ...
2
votes
1answer
390 views
Calculate sum of objects for each unique object property in Ruby
I was helping with an answer in this question and it sparked a question of my own.
Pie is an object that has a pieces array made of of PiePiece objects.
Each PiePiece has a flavor attribute
How do ...
2
votes
5answers
284 views
How to create an infinite enumerable of Times?
I want to be able to have an object extend Enumerable in Ruby to be an infinite list of Mondays (for example).
So it would yield: March 29, April 5, April 12...... etc
How can I implement this in ...
2
votes
6answers
1k views
Common Ancestor to Java Array and List
In .NET, both array and list have Enumerable as ancestor, so a method that accept Enumerable as an argument can receive both array and list as its argument.
I wonder if there is a similar thing in ...
2
votes
3answers
429 views
Sort a collection of objects by number (highest first) then by letter (alphabetical)
I'm building a widget to show medal counts for the Olympics. I have a collection of "country" objects, where each has a "name" attribute, and "gold", "silver", "bronze" for medal counts.
List should ...
2
votes
4answers
175 views
Conditional summarizing via inject
How to get the index of item in:
my_array.inject {|rs,item| rs += item}
I need to summarize all except the i-th element.
2
votes
2answers
264 views
How can I get a list from a Ruby enumerable?
I know of Python's list method that can consume all elements from a generator. Is there something like that available in Ruby?
I know of :
elements = []
enumerable.each {|i| elements << i}
I ...