Tagged Questions

5
votes
10answers
560 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 na …
10
votes
12answers
403 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 …
1
vote
3answers
75 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 …
2
votes
4answers
71 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 …
1
vote
9answers
170 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 FooSt …
1
vote
11answers
296 views

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

After-the-dot-in-a-file-name, it is called extension.
11
votes
40answers
2k views

What should ‘Computer Science’ be called?

A famous computer scientist, Edsger Dijkstra, once remarked, "Computer Science is no more about computers than astronomy is about telescopes." I am inclined to agree. However, th …
3
votes
6answers
357 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 …
4
votes
2answers
116 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 INT …
1
vote
8answers
181 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?
12
votes
7answers
288 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 f …
5
votes
6answers
420 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 …
2
votes
5answers
223 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?