5
votes
4answers
507 views
A concise explanation of nil v. empty v. blank in Ruby on Rails
I find myself repeatedly looking for a clear definition of the differences of nil?, blank?, and empty? in Ruby on Rails. Here's the closest I've come:
blank? objects are false, e …
5
votes
8answers
606 views
size() Vs empty() in vector - why empty() is preferred?
While debugging something, I saw the STL vector::empty() implementation:
bool empty() const
{return (size() == 0); }
I believe, whenever we are probing the emptiness of vec …
4
votes
6answers
691 views
Java iterator over an empty collection of a parameterized type
In Java, I need to return an Iterator from my method. My data comes from another object which usually can give me an iterator so I can just return that, but in some circumstances …
3
votes
4answers
392 views
C#, Linq2SQL: Sum() causes exception instead of returning 0 when no rows
I have this code (ok, I don't, but something similar :p)
var dogs = Dogs.Select(ø => new Row
{
Name = ø.Name,
WeightOfNiceCats = ø.Owner
…
2
votes
6answers
168 views
what is the capacity of an empty vector?
Looks like a stupid question. But comment to my answer to one of the SO question made me to think again.
[ comment says, capacity need not be zero for empty vector]
By default my …
2
votes
3answers
170 views
How to check if a list is empty in Python?
The API I'm working with can return empty [] lists.
What isn't working:
if myList is not None: #not working
if myList is not []: #not working
What will work?
2
votes
7answers
212 views
How to create an empty file in the command line?
How to create an empty file in the DOS/Windows command line?
I tried:
copy nul > file.txt
but it always displays that a file was copied.
Is there any other method in the standa …
2
votes
14answers
517 views
Faster means of checking for an empty buffer in C?
By 'empty buffer,' I mean a buffer full of zeroes.
I am searching for a faster method of accomplishing this:
int is_empty(char * buf, int size) {
int i;
for(i = 0; i < size; …
2
votes
4answers
311 views
To disable a send button if fields empty by jQuery
How can you disable the send -button if there is one or more input -fields empty?
My attempt in pseudo-code
if ( $("input:empty") ) {
$("input:disabled")
}
else
// enable …
2
votes
2answers
229 views
Most efficient way to determine if a Lua table is empty (contains no entries)?
What's the most efficient way to determine if a table is empty (that is, currently contains neither array-style values nor dict-style values)?
Currently, I'm using next():
if not …
2
votes
6answers
201 views
In where shall I use isset() and !empty()
I read somewhere that isset() function is that an empty string tests as TRUE, os isset() is not an effective way to validate text inputs and text boxes from a HTML form.
So you ca …
2
votes
10answers
754 views
How to quickly check if folder is empty (.NET)?
Hello. I have to check, if directory on disk is empty. It means, that it does not contain any folders/files. I know, that there is a simple method. We get array of FileSystemInfo's …
2
votes
4answers
180 views
Strange behavior in constructor
Hi, I have a class made up of several fields, and I have several constructors. I also have a constructor that doesn't take any parameters, but when I try to use it:
int main {
…
1
vote
6answers
134 views
Best way to check if a character array is empty
Which is the most reliable way to check if a character array is empty?
char text[50];
if(strlen(text) == 0) {}
or
if(text[0] == '\0') {}
or do i need to do
memset(text, 0 …
1
vote
5answers
139 views
Java Remove empty XML tags
I'm looking for a simple Java snippet to remove empty tags from a (any) XML structure
<xml>
<field1>bla</field1>
<field2></field2>
<fi …
