1
vote
1answer
19 views
Sorting Core Data with Predicate to eliminate duplicates
I have an Event database loaded into Core Data that has duplicate Event titles. This has been made so the database can provide unique information for each day of the event. Eg fluc …
1
vote
4answers
51 views
Adding a parameter to a FindAll for a Generic List in VB.NET
Excellent question and useful looking answers at:
http://stackoverflow.com/questions/731337/adding-a-parameter-to-a-findall-for-a-generic-list-in-c
But can anyone help turn Jon S …
1
vote
5answers
125 views
IEnumerable question: Best performance?
Quick question:
Which one is faster?
foreach (Object obj in Collection)
{
if(obj.Mandatory){ ... }
}
or
foreach (Object obj in Collection.FindAll(o => o.Mandatory))
{
…
2
votes
3answers
67 views
Applications of Unification?
What are (practical) applications of
Unification ? Where it is been
used in real world?
I couldn't get the whole idea of what it is really about and why its considered as …
2
votes
4answers
126 views
Sorting names with numbers correctly
For sorting item names, I want to support numbers correctly. i.e. this:
1 Hamlet
2 Ophelia
...
10 Laertes
instead of
1 Hamlet
10 Laertes
2 Ophelia
...
Does anyone know of a …
1
vote
1answer
26 views
Predicate syntax when partitioning a vector of pointers (C++)
I have a vector of pointers to objects. I'd like to remove objects from this vector according to an attribute that's reported by a member function.
I'm trying to follow a nice exa …
3
votes
7answers
377 views
C# List.Find method - how can I pass a value into the predicate??
Hi,
I can't work out how to do a "find" on a List I have based on use of a value that I'll pass in at run time. If you see my below code, I want to be able to find the CustomClas …
0
votes
4answers
172 views
An example for using predicate to replace ‘if’ in c#?
I read that the 'if' keyword is evil, and better to use predicate to replace if. Then I googled, but still dont get it.
Can anyone be kind to provide an example?
1
vote
2answers
95 views
Use more than one predicate in a function parameter?
I have a class that builds a url with query string parameters and so on. The class has a method: Url() which returns the complete url composed from the class properties and another …
0
votes
1answer
66 views
How to get the body of a predicate?
I Have a quite simple question that I just cant figure out.
The method code is simple:
protected void Require<TValidator, TParam>(TValidator validator, Expression<Func&l …
3
votes
9answers
247 views
Using STL/Boost to find and modify matching elements in a vector
Let's say I have a vector declared like this:
struct MYSTRUCT
{
float a;
float b;
};
std::vector<MYSTRUCT> v;
Now, I want to find all elements of v that share the same …
1
vote
1answer
74 views
Linq to EF Expression Tree / Predicate int.Parse workaround
Hi All,
I have a linq Entity called Enquiry, which has a property: string DateSubmitted.
I'm writing an app where I need to return IQueryable for Enquiry that have a DateSubmitte …
1
vote
5answers
180 views
Is Predicate<T> not available in .NET 3.0+
Is Predicate available anywhere in .NET? From MSDN http://msdn.microsoft.com/en-us/library/bfcke1bz.aspx, I don't see a Predicate anywhere. I see an anonymous that returns a bool …
0
votes
1answer
101 views
Filter NSArray iphone
Hi,
I use coredata to fill an array with data that is displayed in a tableview.
In the tableview, I have two section.
When a cell is pushed in section1, I want that cell to be …
5
votes
2answers
284 views
How can I implement the unification algorithm in a language like Java or C#?
I'm working through my AI textbook I got and I've come to the last homework problem for my section:
"Implement the Unification Algorithm outlined on page 69 in any language of you …
