Tagged Questions
The removeall tag has no wiki summary.
7
votes
2answers
1k views
RemoveAll for ObservableCollections?
I am looking for Linq way (like RemoveAll method for List) which can remove selected items from my ObservableCollection.
I am too new to create an extension method for myself. Is there any way I ...
4
votes
1answer
2k views
LINQ: How to Use RemoveAll without using For loop with Array
I currently have a log object I'd like to remove objects from, based on a LINQ query. I would like to remove all records in the log if the sum of the versions within a program are greater than 60. ...
3
votes
2answers
182 views
Optimizing ArrayList.removeAll
A lot of people have said that ArrayList.removeAll is really slow with large size arrays.
This article provides two optimized solutions to the ArrayList.removeAll speed, but requires implementing ...
2
votes
2answers
43 views
Wix - remove all files when apply major special update
In previous version of installer, created by Wix, next code exists:
<InstallExecuteSequence>
<RemoveExistingProducts After="InstallInitialize" />
</InstallExecuteSequence>
In ...
2
votes
3answers
58 views
PHP: Remove all fcn not acting as expected, Code Inside
I made this simple function (remove all $elem from $array):
function remall($array, $elem) {
for($i=0; $i < count($array); $i++)
if($array[$i] == $elem)
unset($array[$i]);
...
1
vote
2answers
56 views
xcode table view reload continually adds data to the table
I have an rss parser as part of my app code, and it is working fine and loading the rss xml file and populating the tableview fine.
The problem is with a refresh/reload button, which does reload the ...
1
vote
3answers
47 views
How can I delete several items from an object, which is copy of another object, without affecting the one of which is derived?
help me please to use the function "RemoveAll" or maybe there should be another implementation.
I have an object (services) which contains a list with items.
I make another object (anotherService ) ...
1
vote
1answer
571 views
How to clear/ reset a JFrame
Me and my friend have decided to work on a card game which cycles between 3 screens (Player1HandScreen, Player2HandScreen and FightScreen).
Once Player1 has chosen their card from ...
1
vote
2answers
126 views
removeAll seems to affect its argument
I have written a generic Partition class (a partition is a division of a set into disjoint subsets, called parts). Internally this is a Map<T,Integer> and a Map<Integer,Set<T>>, ...
1
vote
1answer
425 views
ExtJS persistent panels (no autoDestroy)
Good evening dear fellow programmers!
I have a question regarding persistant panels in ExtJS. I have a few form panels that I want to display inside a single container panel. The displayed form ...
1
vote
3answers
1k views
Problem with implementing removeAll for List of custom object
I have a scenario in my code where I need to compare two Lists and remove from the first list, objects which are present in the second list. Akin to how the "removeAll" object works for List. Since my ...
0
votes
3answers
72 views
Java REGEX <script> tag removing from URL [closed]
Possible Duplicate:
Remove JavaScript with Regex
How can i remove all content between <script.... and ... </script>?
If I write:
s = s.replaceAll("<script.+</script>", ...
0
votes
2answers
43 views
What is the performance (Big-O) for removeAll() of a treeset?
I'm taking a Java data structures course atm. One of my assignment asks me to choose a data structure of my choice and write a spell checker program. I am in the process of checking the performance of ...
0
votes
1answer
52 views
How to fix a non responding ext.list?
I've got a problem with an Ext.List:
You press a button on the main menu and are shown the list. Everything on it works fine and it let's you choose, where to go deeper inside the app. No problems ...
0
votes
2answers
80 views
how to use the iterator in if -else loop with removeAll in java?
I have the following problem: I do use iterator in the first part of "if" to remove an element of S, but I don't have a clue about how to remove the whole set S3 from S using the same iterator again ...
0
votes
2answers
63 views
problem in assigning JPanel returned by methods of other class to a common JPanel object in one after another way
I am creating a setup appplication.
I have a main class which initialize an application; which has a JFrame and 2 JPanel variable namely panelX and panelY. This main class creates a JFrame and add ...
0
votes
0answers
156 views
How to remove all elements from NSTreeController with NSOutlineController
I am using NSTreeController with NSOutlineController to display contents in 1parent-1child hierarchy.
My structure is like this
- parent
- child
- parent
- child
Now when user press a refresh ...
0
votes
4answers
149 views
Limit RemoveAll to a certain number of objects
I am working with a List<T> which contains both parent and children objects. In this list children objects are aware of their related parent object and vice versa. Using this list I am trying to ...