5
votes
4answers
153 views
Is there a preferred way of formatting jQuery chains to make them more readable?
Given this following sample code which clones a table row, sets some properties and then appends it to a table:
$("#FundTable").append(
objButton.parents("tr").clone()
…
4
votes
7answers
180 views
In C#, what is the best/accepted way of doing constructor chaining?
Given the following class:
public class MyClass
{
private string _param;
public MyClass ()
{
_param = string.Empty;
}
public MyClass (string param)
…
4
votes
4answers
361 views
Haskell: monadic takeWhile?
I have some functions written in C that I call from Haskell. These functions return IO (CInt). Sometimes I want to run all of the functions regardless of what any of them return, …
3
votes
3answers
241 views
Route Chaining with the Zend Framework
I'm trying to implement route chaining for an admin panel on a Zend Framework site that I am working on. I'm using the following configuration file in hopes that the "admin" route …
3
votes
8answers
351 views
JavaScript Object Method Chaining: useful?
So... messing around in JavaScript with an idea that's new to me, having methods of an Object return the Object of which they are methods; this then leads to chainability. My quest …
2
votes
5answers
81 views
conditional chaining in ruby
Is there a good way to chain methods conditionally in Ruby?
What I want to do functionally is
if a && b && c
my_object.some_method_because_of_a.some_method_becau …
2
votes
1answer
136 views
In QT, chaining models does not work as expected
Alright, I have a really basic QStandardItemModel, filled with some numbers. I managed to display it in a QTableView, it's ok. I created a new model ( subclass either of QAbstractI …
2
votes
2answers
148 views
Can it be disadvantageous to store jQuery objects in a variable?
I've just recently asked the folloiwng question with regard to jQuery chaning:
http://stackoverflow.com/questions/1286829/is-there-a-preferred-way-of-formatting-jquery-chains-to-m …
2
votes
7answers
770 views
How do I chain or queue custom functions using JQuery?
I have multiple functions the do different animations to different parts of the HTML. I would like to chain or queue these functions so they will run the animations sequentially an …
2
votes
2answers
144 views
working with fstream files in overflow chaining in c++
Hello,
I have a file that I want to read and write to a binary file using records. In the beginning I have an empty file and I want to add new record, but when I use the seekp fu …
2
votes
2answers
181 views
java exception chaining question
Hi all,
Imagine I have the methods:
public static void funcA() {...}
public static void funcB()
{
byteBuffer.wrap(someByteArray, 0, someByteArra.length);
}
IN JAVA API:
…
2
votes
2answers
93 views
When chaining .NET delegates, how are the original instances (re)used?
Say I have the following C# code:
Action a = TestMethod;
Action b = TestMethod;
Action c = b;
b += a;
Tests indicates that b is not the same instance as c, so clearly the + oper …
1
vote
9answers
140 views
Using string.Substring() as part of a chain
Hi guys
I'm trying to maniplulate a string without making a big issue out of it and spreading it out onto multiple lines, so I'm using some chaining to achieve this. The question …
1
vote
4answers
45 views
What should I consider when choosing between chainability and language constructs?
I have tough time making this design decision.
I could go with traditional new language construct to initialize objects, and use them through variables, such as:
$o = new Object( …
1
vote
1answer
51 views
Chaining databound LINQ queries in LINQ to DataSet
I am trying to perform a query on a query result, but I am getting an error: “The method or operation is not implemented”. Can I chain queries in this way?
For example, I have a No …
