Tagged Questions
The empty tag has no wiki summary.
48
votes
5answers
8k 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, empty, or a ...
22
votes
8answers
52k views
How to check if inputs are empty with jQuery?
I have a form that I would like all fields to be filled in. If a field is clicked into and then not filled out, I would like to display a red background.
Here is my code:
$('#apply-form ...
16
votes
2answers
4k 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 next(myTable) then
...
12
votes
3answers
913 views
Enumerable.Empty<T>() equivalent for IQueryable
When a method returns IEnumerable<T> and I do not have anything to return, we can use Enumerable.Empty<T>().
Is there an equivalent to the above for a method returning IQueryable<T>
...
11
votes
4answers
3k views
C#: Recommended way to check if a sequence is empty
A method returns a sequence, IEnumerable<T>, and you now want to check if it is empty. How do you recommend doing that? I'm looking for both good readability and good performance.
The first ...
10
votes
12answers
11k views
How to quickly check if folder is empty (.NET)?
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 and check if count of ...
10
votes
8answers
3k 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 vector it is always ...
9
votes
3answers
8k 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?
9
votes
6answers
9k views
Find SQLite Column Names in Empty Table
For kicks I'm writing a "schema documentation" tool that generates a description of the tables and relationships in a database. I'm currently shimming it to work with SQLite.
I've managed to extract ...
8
votes
3answers
276 views
Inheritance Costs in C++
Taking the following snippet as an example:
struct Foo
{
typedef int type;
};
class Bar : private Foo
{
};
class Baz
{
};
As you can see, no virtual functions exist in this relationship. Since ...
8
votes
5answers
3k 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 the underlying data ...
7
votes
9answers
633 views
Advantages of an empty class in C++
What could be the possible advantages/uses of having an empty class?
P.S:
This question might sound trivial to some of you but it is just for learning purpose and has no practical significance. FYI ...
7
votes
3answers
1k views
Java process.getInputStream() has nothing to read, deadlocks child
I am having an issue with some process wrapping, and it's only occurring in Windows XP. This code works perfectly in Windows 7. I'm really stumped as to why the streams are empty in XP. I've also ...
7
votes
4answers
1k 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
.Cats
...
6
votes
4answers
178 views
php is null or empty?
i have a weird question regarding php and NULL.
my question is related with the following code
$a = '';
if($a == NULL) {
echo 'is null';
}
why i see "is null"? $a is empty, is that a ...
6
votes
4answers
772 views
Java PreparedStatement using two single quotes for empty string parameter
I am using a PreparedStatement with sql such as:
String sql = "insert into foo (a,b,c) values (?,?,?)";
ps = conn.prepareStatement(sql);
ps.setString(psIndex++, a);
ps.setString(psIndex++, b);
...
6
votes
3answers
710 views
sizeof empty structure is 0 in C and 1 in C++ why? [closed]
Possible Duplicates:
Empty class in C++
What is the size of an empty struct in C?
I read somewhere that size of an empty struct in C++ is 1. So I thought of verifying it.
Unfortunately I ...
6
votes
9answers
13k views
php $_POST array empty upon form submission
I have a custom CMS i've built that works perfectly on my dev box (Ubuntu/PHP5+/MySQL5+).
I just moved it up to the production box for my client and now all form submissions are showing up as empty ...
6
votes
3answers
8k views
WPF ComboBox with empty item?
Suppose we have a DataSource bind to a collection from Database. There is no null item of course. How to add a void item into a ComboBox, so that at first load user would see an empty string. I don't ...
5
votes
2answers
353 views
Check if a directory is empty using C on Linux
Is this the right way of checking whether a directory is empty or not in C? Is there a more efficient way to check for an empty directory, especially if it has 1000s of files if not empty?
int ...
5
votes
3answers
109 views
jQuery: can the empty() method be given a duration?
In jQuery, can the empty() method be given a duration, such that the object fades to empty over a period of time (for example, 500 milliseconds)?
Here is the current code:
...
5
votes
6answers
338 views
How to match an empty dictionary in Javascript?
From the node REPL thing,
> d = {}
{}
> d === {}
false
> d == {}
false
Given I have an empty dictionary, how do I make sure it is an empty dictionary ?
5
votes
2answers
300 views
C# Interface implemented by empty abstract class
Can I leave an abstract class that implements interfaces empty and imply that all the methods/properties in the interface are abstract within my class. It appears that I have to write them out again ...
5
votes
2answers
245 views
Empty struct in C vs empty struct in C++
Why is empty struct in C a constraint violation? Why does this rule get changed in C++?
Are there any historical reasons?
5
votes
3answers
161 views
Nested empty class
I have the following code
class nest_empty
{
class empty{};
};
Will the size of nest_empty be 1 (on my implementation sizof an empty class is 1)? If yes why? Can nest_empty be considered as an ...
5
votes
8answers
469 views
Which should I use for empty string and why? [closed]
Possible Duplicate:
What is the difference between String.Empty and “”
Which of the following should I use for assigning an empty string and why?
string variableName = "";
or
...
5
votes
8answers
1k views
finding empty directories unix
i need to find empty directories for given list of directories
some directories have directories inside it
if inside directories also empty
i can say main directory is empty otherwise it's not ...
5
votes
8answers
4k views
How to create an empty file at the command line?
How to create an empty file at 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 standard cmd?
It ...
5
votes
4answers
8k 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 the ask_question ...
4
votes
6answers
157 views
How to return an Empty value instead of a null in C#
I have an extension for string arrays which returns an empty String if the array is null, if the array length is == 1 it returns the first element otherwise element at index position is returned, no ...
4
votes
3answers
530 views
Empty space(or white space) shown in between cells in ajax fetched data fed to table in ie9 browser only,
As the title suggest, I have a table which is loaded from database. First only 15 rows are fetched. Later there is way to make it show 15 , 50 and 100 records to show using dropdown list. Which is ...
4
votes
5answers
235 views
better for-loop syntax for detecting empty sequences?
Is there a better way to write the following:
row_counter = 0
for item in iterable_sequence:
# do stuff with the item
counter += 1
if not row_counter:
# handle the ...
4
votes
7answers
305 views
Create “missing objects” (aka: “empty symbols” , “empty objects”) / needed for formals manipulation/
How to create an "empty object" in R? [edit: I don't know how to rightly call this "thing" so I am calling it "empty object", others: "empty symbol", "zero length symbol", "missing object" might also ...
4
votes
6answers
1k views
Determine whether a string is “empty”
I need a JavaScript function to tell me whether a string object is empty. By "empty", I mean that it's not all just whitespace characters. I've written this prototype:
String.prototype.isEmpty = ...
4
votes
2answers
234 views
What does xmlns=“” exactly mean
Given the following (piece of) a soap call;
<m1:NextCommencementDateInput xmlns:m1="http://foo.bar.com/Types">
<aDate xmlns="">2010-06-02</aDate>
...
4
votes
1answer
427 views
How do I test to see that a directory is empty in ANT?
How can one test to see that a directory is empty in ant?
4
votes
8answers
1k views
How to find out if a Java ResultSet obtained is empty?
Class.forName("org.sqlite.JDBC");
Connection conn =
DriverManager.getConnection("jdbc:sqlite:userdata.db");
Statement stat = conn.createStatement();
ResultSet rs = stat.executeQuery("SELECT * ...
4
votes
1answer
184 views
Using php's magic function inside another function does not work
I want to use magic function __set() and __get() for storing SQL data inside a php5 class and I get some strange issue using them inside a function:
Works:
if (!isset($this->sPrimaryKey) || ...
4
votes
4answers
2k views
Checking for an empty field with MySQL
I've wrote a query to check for users with certain criteria, one being they have an email address.
Our site will allow a user to have or not have an email address.
$aUsers=$this->readToArray('
...
4
votes
14answers
2k views
Faster approach to checking for an all-zero buffer in C?
I am searching for a faster method of accomplishing this:
int is_empty(char * buf, int size)
{
int i;
for(i = 0; i < size; i++) {
if(buf[i] != 0) return 0;
}
return 1;
}
...
4
votes
6answers
1k 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 can use empty() to ...
3
votes
4answers
68 views
PHP check if user typed something in text input
I have a few simple html text inputs. I would like to check that the user inputted something and not just spaces. My code below isn't working.
HTML (in a form):
<input type='text' name='email' ...
3
votes
5answers
78 views
How to “rtrim” a PHP array (remove empty elements ONLY towards the END of the array) and avoid a for or similar loop if possible
Much like rtrim() to a string, how do I remove the empty elements of an array only after the last non-empty element towards the end of the array while avoiding a for or similar loop and possibly using ...
3
votes
4answers
77 views
How to hide a jQuery manipulated empty element and its parent
I have a form (todo list) containing labels/checkboxes (todos) as follows:
<form class="tasklist">
These are your tasks for today
<label>
<input class="task" ...
3
votes
3answers
94 views
PHP - How to remove empty entries of an array recursively?
I need to remove empty entries on multilevel arrays. For now I can remove entries with empty sub-arrays, but not empty arrays... confused, so do I... I think the code will help to explain better...
...
3
votes
6answers
79 views
if($val) vs. if($val != “”) vs. if(!empty($val)) — which one?
I see a lot of people using a variety of different methods to check whether of a variable is empty, there really seems to be no consensus. I've heard that if($foo) is exactly the same as ...
3
votes
8answers
141 views
Is There A Difference Between strlen()==0 and empty() in PHP?
I was looking at some form validation code someone else had written and I saw this:
strlen() == 0
When testing to see if a form variable is empty I use the empty() function. Is one way better than ...
3
votes
2answers
236 views
Display a message that a Spark List is empty
Sorry, this is probably a really easy to answer question, but how in Flex can I display a message within a Spark List component that states that the List is empty. For example if I have a List showing ...
3
votes
1answer
143 views
RIA/EF4 Entity property mapped to NOT NULL nvarchar - empty string
Background:
Entity Framework 4
Silverlight 4
RIA services
MSSQL Server 2008
I have an entity that has a String property named Description.
In database it maps to the NOT NULL NVARCHAR(200).
...
3
votes
2answers
226 views
How to implement __isset() magic method in PHP?
I'm trying to make functions like empty() and isset() work with data returned by methods.
What I have so far:
abstract class FooBase{
public function __isset($name){
$getter = ...