Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
10answers
6k views

What is the Difference between a Heuristic and an Algorithm?

What is the Difference between a Heuristic and an Algorithm?
19
votes
11answers
2k views

what is the official name of C++'s arrow (->) operator?

I think the subject says it all. I always call it the "arrow operator", but I'm sure it has an official name. I quickly skimmed the C++ standard and didn't see it mentioned by name.
16
votes
7answers
441 views

Is there a “canonical” name for a function combining min() and max()?

I find that I frequently end up writing a function that I always call "clamp()", that is kind of a combination of min() and max(). Is there a standard, "canonical" name for this function? It always ...
13
votes
4answers
966 views

What does “cdecl” stand for?

Yes, I know that "cdecl" is the name of a prominent calling convention, so please don't explain calling conventions to me. What I'm asking is what the abbreviation (?) "cdecl" actually stands for. I ...
12
votes
5answers
533 views

What does stream means? What are it's characteristics?

C++ and C# both use this word stream to name many classes. C++ : iostream, istream, ostream, stringstream, ostream_iterator, istream_iterator and so on. C# : Stream, FileStream,MemoryStream, ...
12
votes
12answers
749 views

Why is it called 'business logic'? Where did this term come from?

I'm going through all sorts of WPF documentation, and I'm feeling unnecessarily confused. The term 'business logic' is scattered throughout it, as if everyone should know what it is. I can see what ...
10
votes
4answers
248 views

Name that technique (it may be called 'piggybacking')

What is the name of the following method/technique (I'll try to describe the best I could, background on "memoization" is probably needed to understand why this technique can be very useful): You ...
10
votes
9answers
2k views

Naming conventions: “State” versus “Status”

Quick question: I'd like to hear your thoughts on when to use "State" versus "Status" when naming both fields such as "Foo.currentState" vs "Foo.status" and types, like "enum FooState" vs "enum ...
8
votes
6answers
468 views

What part of the C# language is .ForEach()?

If I'm explaining the following ForEach feature to someone, is it accurate to say that #2 is the "LINQ foreach approach" or is it simply a "List<T> extension method" that is not officially ...
6
votes
4answers
290 views

What is the name of this operator =>? [closed]

Possible Duplicate: What is the => token called? What is the name of this operator in C#?
6
votes
7answers
222 views

Name of class of programming languages that execute its own code

What do you call a programming language that can execute its own code (passed as a string literal)? The setting in my mind is something similar to this (forgetting for a moment typing of code, ...
6
votes
6answers
498 views

why co-cocoa pr-programmers st-stutter

one of the things i like most about cocoa is the readability factor. but... one of the things that annoys me most is the convention of convenience constructors to stutter. what I mean is this: ...
6
votes
7answers
562 views

What is this functional “pattern” called?

I was fooling around with some functional programming when I came across the need for this function, however I don't know what this sort of thing is called in standard nomenclature. Anyone recognizes ...
5
votes
3answers
308 views

What are the backticks `` called?

What are the backtick operators (``) called in the context of evaluating their content?
5
votes
3answers
79 views

What is the post-for/if syntax called?

Does the following syntax have a name? print for ( @ARGV ); exit if $x;
5
votes
4answers
555 views

.NET platform, .NET environment or .NET framework which is correct? And what's the difference between platform/environment/framework?

In some documents (i.e. ECMA-334) the name of '.NET framework' is used, but in other documents (in many books), '.NET platform' is used. I saw someone refer .NET as .NET environment. Which one is ...
5
votes
5answers
1k views

JavaScript try/catch: errors or exceptions?

OK. I may be splitting hairs here, but my code isn't consistent and I'd like to make it so. But before I do, I want to make sure I'm going the right way. In practice this doesn't matter, but this has ...
4
votes
4answers
209 views

Is there a single word that means “non-recursive datatype with two constructors”?

Is there a word that describes data types that have exactly two constructors; and are not recursive? i.e. describes these types data Bool = False | True data Maybe a = Nothing | Just a data ...
4
votes
4answers
103 views

What should “JSON object” be called?

Whenever someone here says "I have a JSON object", people complain (rightly) that "There's no such thing as a JSON object!" But... What do you call the class of data structures that could be ...
4
votes
8answers
195 views

Is “temp” ever a good variable name?

Sometimes I've been trying to come up with a good variable name for minutes, when I realize that it isn't worth the effort for this tiny loop. Is there any situation where it would be justified to ...
4
votes
2answers
241 views

What is the name of this type of directed acyclic graph?

Perhaps it isnt even a DAG, but as its naming im after i wasnt sure what title to give this... What is the name of a data structure where every node can only have 0 or 1 paths INTO it? Strictly, is ...
3
votes
3answers
156 views

What is the relation between GTK, GTK+ and GTK2?

I'm confused by the GTK terminology. According to Wikipedia, there seem to be bindings to GTK+ that are called GTK (GtkAda) and GTK2 (gtk2hs, Gtk2-Perl). Could someone clear this up for me?
3
votes
3answers
139 views

What is a function that takes no arguments called?

Is there a term that describes a function that takes no arguments more concisely than "function that takes no arguments"? (In the same way that e.g. "higher order function" means "function that takes ...
3
votes
2answers
284 views

What are docstrings called in java?

Before Java methods we have something like: /** * Takes a number and returns its square root. * @param x The value to square. * @return The square root of the given number. */ public float ...
3
votes
4answers
155 views

What's the name for the first line of a function?

I'm writing a worksheet, and want to ask students to write a function that looks like this: isPrime(int number) What's that line called - manifest comes to mind, but I don't think that's it...
3
votes
8answers
206 views

Hexgit number? [closed]

if digit is the name for a number on base 10, what would be the name for a number on base 16? Hexgit?
2
votes
1answer
233 views

Is there a name for this design pattern?

There's a specific snippet of code that I often use for recycling objects in a list based on a data provider. I thought of making a class to run through the snippet, using a given class to handle each ...
2
votes
2answers
163 views

What is the etymology/meaning of the term “value object”?

I am a programmer with a .NET / PHP background. I recently reviewed a video training on Flashbuilder 4 / ActionScript. One of the videos in the video training is named "Creating a Data Model with a ...
2
votes
5answers
223 views

Is the following JavaScript construct called a Closure?

(function() { //do stuff })(); EDIT: I originally thought this construct was called a closure - not that the effect that it caused results (potentially) in a closure - if variables are captured. ...
2
votes
2answers
184 views

Is there a name for a pure-data Objective-C class?

This is less of a code-specific question and more of an Objective-C nomenclature question. In C you have struct for pure data. In Enterprise Java, you have "bean" classes that are purely member ...
2
votes
5answers
298 views

In what language is there a “guard” keyword or concept?

I recently tried to understand a C++ program that was written by somebody who I assume had a background in functional programming: For example, he had declared a closure class which he extensively ...
2
votes
6answers
367 views

Why “class” for class in Java? [closed]

Why did the creators of Java use the name "class" for the classes in Java? Where does this term come from?
2
votes
3answers
97 views

Package name for CurrentDate class

I'm about to write a class called CurrentDate and need a solid package name. The obvious answers are com.destroytoday.date or com.destroytoday.time, but I'm not sure if I'll have more date-related ...
2
votes
4answers
92 views

Technical name for a region of memory with a fixed pattern for bounds checking?

I want to know if there is some technical name for those regions of extra memory that are allocated for debugging purposes and filled with special patterns, so they can be checked at runtime to see if ...
2
votes
11answers
555 views

Before-the-dot-in-a-file-name, what is it called?

After-the-dot-in-a-file-name, it is called extension.
2
votes
5answers
428 views

SQL JOIN : Technical name for table identifier

When I use A.column name, B.Column name where A = Table A and B = Table B , what is the technical name for the A.Column name? Is it a prefix, identifier or what else?
1
vote
4answers
135 views

What is a linked list that defines no data storage called? [closed]

I'm using singly linked lists, in C, without the pointer to the node value. So, instead of: struct _node { struct _node * next; void* value; } node; I have struct _node { struct _node * ...
1
vote
2answers
26 views

OOP theory question :: $this->someVariable = $someValue

I was wondering what this statement actually does: $this->nameInObject = $someValue; So if you're inside a class object that has a variable "nameInObject", are you assigning a value of someValue ...
1
vote
3answers
118 views

SQL Nomenclature: “Query” or “Command” for INSERT/UPDATE/DELETE?

Which is more proper to call INSERT/UPDATE/DELETE statements? Command or query? I would think "command," since "query" implies that you are asking a question and expecting to get your question ...
1
vote
2answers
34 views

Is there an established vocabulary for discussing subsets of nodes selected from a tree?

When writing algorithms to deal with subsets of nodes from a tree, it's necessary to identify characteristics of those nodes. For example, a particular subset may be a forest, and the algorithm could ...
1
vote
3answers
58 views

XML element names

I need to redefine an XML document and schema for my company. The document in question is split into a number of sections that each contain information about a medication, for example; ...
1
vote
3answers
152 views

Presentation layer / Public Services layer. A common term?

While defining our application architecture (which contains both web UI and external web services) we stumbled upon our inability to find a common name for the topmost layer. It is quite clear that ...
1
vote
2answers
54 views

name for a function that transforms assignment statements to expressions

update Since one effect of these functions is to provide a way to use method chaining on methods that would not normally support it *, I'm considering calling them chain and copychain, respectively. ...
1
vote
3answers
575 views

accessor and mutator?

when using doctrine i stumble upon these 2 words: accessor and mutator. are these only used in doctrine or are they specific for php? and what do they mean? thanks
1
vote
3answers
169 views

routine to generate a 2d array from two 1d arrays and a function

I'm guessing that there's a word for this concept, and that it's available in at least some popular languages, but my perfunctory search was fruitless. A pseudocode example of what I'd like to do: ...
1
vote
3answers
125 views

Package name for a loop class

I wrote a class that performs an asynchronous loop. It needs a package name. I already have a util package, but feel resistant to put half of my classes in that package. If it really belongs there, ...
1
vote
3answers
219 views

How to ask a business user for cardinality information?

When collecting requirements from business users, I run into a point where I need to understand the cardinality between two concepts in the business user's domain. This is usually something I want to ...
0
votes
1answer
47 views

Aggregating JavaScript array into several arrays with different element lengths?

I have an array with 101 values (representing people aged 0-100). What would be a preferably fast and simple way of building these aggregated arrays in one go: var input = [55,33,12 .. 98 more] ...
0
votes
1answer
30 views

OPP nomenclature question: object->function($param)

In OOP, what do call it when you do: $o = new ClassInstance(); $o->someFunction($p); For example, I would say I'm passing the parameter p to the function someFunction. Easy. But how do you ...
0
votes
0answers
25 views

“Compression point” in MySQL?

On the topic of MySQL, what would one mean if they referenced a "compression point?" This seems to be related to comparing a changed value to a previous value...

1 2