Tagged Questions
The noop tag has no wiki summary.
16
votes
9answers
2k views
What real purpose does $.noop() serve in jQuery 1.4?
Pouring over the release notes regarding jQuery 1.4, I came acrosss $.noop() which is:
Description: An empty function. (added in 1.4)
You can use this empty function when you wish to pass ...
6
votes
3answers
820 views
Does a no-op “do nothing” function object exist in C++(0x)?
I realize this is a ludicrous question for something that takes less than 2 seconds to implement. But I vaguely remember reading that one was introduced with the new standard.
I grep'ed VC10's ...
6
votes
6answers
689 views
What do you think of Google's new programming language: Noop?
http://code.google.com/p/noop/
Noop (pronounced noh-awp, like the machine instruction) is a new language that attempts to blend the best lessons of languages old and new, while syntactically ...
5
votes
1answer
323 views
What's the purpose of `qt_noop`
I just found the existence of qt_noop() define in the qglobal.h as:
inline void qt_noop() {}
What's the point of it?
4
votes
2answers
125 views
Why use (void)1 as a no-op in C++?
I'm reviewing a third party codebase and see this definition of an assert macro:
#define assert( x ) \
if( !( x ) ) { \
ThrowException( __FILE__, __LINE__ ); \
} else \
...
4
votes
1answer
130 views
how to to do the “noop but return unit” in OCaml
just a fast hint: I want to print a list of strings and I was going to do it by pattern matching just to get into this powerful functionality, how can I express the "do-nothing-but-return-unit" ...
3
votes
5answers
138 views
What's a portable way to implement no-op statement in C++?
One in a while there's a need for a no-op statement in C++. For example when implementing assert() which is disabled in non-debug configuration (also see this question):
#ifdef _DEBUG
#define ...
2
votes
9answers
345 views
Simple C# Noop Statement
What is a simple Noop statement in C#, that doesn't require implementing a method?
(Inline/Lambda methods are OK, though.)
My current use case: I want to occupy the catch-block of a try-catch, so I ...
1
vote
2answers
96 views
Why does NHIbernate (Fluent) still execute queries for my Noop properties?
I have a user object that has a many to many relationship with project. In my user mapping, I have this:
HasManyToMany(x => ...
0
votes
6answers
330 views
How do you write a no-op statement?
What is the best way to write a no-op statement in Delphi?
Take this code:
if a=b then
SomeOldStatement
else
AnotherStatement;
And say that you temporarily want to rem out SomeOldStatement.
...
0
votes
1answer
116 views
IceFaces javascript won't works in a liferay portlet
I deployed an application (made with ice faces 1.8) that works on Liferay5 in a weblogic into a Liferay6 with tomcat. The application and everything seems good....the only thing that won't works is ...