A language feature is a distinct aspect of a programming language, such as binding rules, lexical design, or facets of the type system.
2
votes
2answers
43 views
Is it possible to implement property setter explicitly while having a getter publicly available?
When I define an interface that contains a write-only property:
public interface IModuleScreenData
{
string Name { set; }
}
and attempt to (naively) implement it explicitly with an intention ...
-1
votes
0answers
56 views
Features for Kannada Characters recognition in Matlab [closed]
I'm doing a project where i have to classify and recognize Kannada( a South-Indian language) characters. The method i am supposed to follow is to create a set of classifiers and each character should ...
2
votes
3answers
63 views
How do you exit the caller function in JavaScript?
It is possible to return from/exit the caller function i JavaScript?
We are adding testing methods to our framework and we want to exit if we have an error on an Assertion.
Given the following ...
5
votes
3answers
122 views
Limitations to functions declared as `extern “C”`? C++ features still usable?
Does extern "C" do something more besides specifying an identifier should not be mangled?
Are C++ features available in functions that have been declared as extern "C"?
3
votes
2answers
59 views
How to get the unique slices of a matrix?
In matlab, if you have a matrix A you can find the matrix B containing all of the unique rows of A as follows:
B = unique(A,'rows');
What I have is a 3d matrix, with rows and columns as the first ...
3
votes
4answers
245 views
What advantages or disadvantages would the ?= operator have? [closed]
I'm thinking instead of
result = result ?? defaultValue;
you could write
result ?= defaultValue;
I'm not saying it's a good idea.
What advantages would this operator have?
What disadvantages ...
1
vote
2answers
67 views
Is this a bug in Python inheritance? [duplicate]
I'm not sure if the output of this code is correct or a bug:
class F:
"""An abstract class"""
list_of_secrets = []
def __init__(self):
pass
def getSecret(self):
return ...
5
votes
4answers
224 views
How does “δ:Q×Σ→Q” read in the definition of a DFA (deterministic finite acceptor)?
How do you say "δ:Q×Σ→Q" in English? Describing what "×" and "→" mean would also help.
4
votes
3answers
46 views
Ruby language feature of Set[1,2,3]
In Ruby, a set can be initialized by Set[1,2,3]
So can an array: Array[1,2,3]
Is it possible to write some code to do the same thing to my own classes?
Or it's just a language feature for only a few ...
-1
votes
3answers
87 views
Unknown Java 7 feature [duplicate]
Possible Duplicate:
How are Anonymous (inner) classes used in Java?
I just discovered the following feature while reading through Java Puzzlers
public class Main {
public static void ...
2
votes
1answer
316 views
trouble getting function caller name (arguments.callee.caller not working)
I've read the numerous posts here on stack overflow about how to use
arguments.callee.caller or arguments.callee.caller.toString()
If you do a simple search, you can find a bunch of posts about ...
4
votes
3answers
222 views
How is Nullable<T> different from a similar custom C# struct?
In Nullable micro-optimizations, part one, Eric mentions that Nullable<T> has a strange boxing behaviour that could not be achieved by a similar user-defined type.
What are the special features ...
14
votes
2answers
434 views
Should I use new Haskell language extensions in favour of the old ones?
When starting a new Haskell project which needs language features that are offered by both new and older extensions, which should I use? The new one or the old one? For example:
GADTs supersede ...
2
votes
5answers
94 views
Does C# Have An Operation Similiar to JavaScript's || Setter?
Does C# have a similar operation to JavaScript's || setter?
For example, in JavaScript, if I want to check if a value is null and set a default, I can do something like this:
function foo(val){
...
-3
votes
2answers
84 views
what are the fundamental problems with having non-nullable reference types in C#? [closed]
At this moment there is no such thing as non-nullable types in C#. It is quite obvious that as any other feature it takes time and money to get it developed. No questions here. However I can see a lot ...
3
votes
2answers
284 views
What can Python do that Jython cannot?
I'm in need of a flexible framework and would like to try to inject some code in different places of it just to change behavior on the fly.
Since it's a Java project and basically I'm limited to ...
5
votes
1answer
296 views
Which cards and compute capabilities are required to fully utilize CUDA 5's features [closed]
We just received the stable version of CUDA 5. There are some new terms like Kepler and ability of using MPI with better performance, and running the same card with 32 applications at the same time. I ...
4
votes
2answers
195 views
First-class patterns in Erlang?
Are there any support for first-class patterns in Erlang?
f(SomeMagicPattern) ->
receive
SomeMagicPattern -> ok
end.
If the answer is no (support), do you know any other approach ...
0
votes
0answers
91 views
Begin a LINQ statement with “let”? [closed]
I think it would be grand to be able to begin a LINQ statement with let like so:
let name = items.Where(item => item.Id == 10).Select(item => item.Name).FirstOrDefault()
from item in items
...
0
votes
2answers
62 views
Where can I learn JavaScript features not yet included in ECMAScript standard?
I just tried in Firebug console,
let (X=10) X/2
and
[x,y]=[y,x]
These are features supported by SpiderMonkey, I guess V8 has its own share.
Where can I learn of features that are not yet ...
2
votes
2answers
55 views
Is there any current proposal I can follow about adding proper locale support to JavaScript?
Even though all major operating systems and programming languages/APIs have had locale support for at least a couple of decades, it seems that JavaScript still does not!
With JavaScript becoming more ...
0
votes
2answers
77 views
statically-typed languages with types decided at runtime?
for example, something like this in Ada (if it were to support this):
type Type_Name is range bottom .. top;
where "bottom" and "top" are variables.
or something like this in C (if it were to ...
13
votes
5answers
303 views
“using” construct and exception handling
The "using" construct looks incredibly handy for situations that require both beginning and separated end parts.
Quick example to illustrate:
using (new Tag("body")) {
...
0
votes
1answer
40 views
What language features are useful for fast-prototyping?
What languages features are known for being useful for fast prototyping of projects before starting the actual code?
1
vote
1answer
48 views
How portable are JavaScript break labels?
A less well-known feature of JavaScript is that you can use labels to break and continue out of nested loop and switch statements:
i_loop: for (i = 0; i < 10; i++) {
j_loop: for (j = 0; j < ...
1
vote
1answer
57 views
Public properties for validated collections [closed]
Collections are independent types from the domain objects on which they are used to define properties, yet they are usually closely tied to internal business logic of the single domain object that ...
0
votes
0answers
95 views
Why do no other languages implement break the way Bash does? [closed]
I just stumbled over the documentation of the break builtin in Bash:
break [n]
Exit from within a for, while, until, or select loop. If n
is specified, break n levels.
So, unlike in ...
5
votes
4answers
346 views
how can I create a truly immutable doubly linked list in C#?
It is more of a theoretical question: Is it possible by any means in C# to create a truly immutable doubly linked list? A problem as I see it is in the mutual dependency of 2 adjacent nodes.
By ...
2
votes
3answers
118 views
Generics hell or what would it take to have assembly level type parameterization (assembly wide generics) in .NET
Not sure what this question is exactly about.
Here is the problem. Suppose, I am working on a framework that is going to be packed into an assembly without source code available and shipped as a ...
-2
votes
3answers
152 views
Any documentation for <? if(..){ ?>…<? } ?> PHP control structure? [closed]
Is there any, official or unofficial, documentation for control structures like this one:
<?php if ($expression == true) { ?>
<h3>Output</h3>
<?php } else { ?>
...
3
votes
3answers
311 views
Is this the correct way of putting HTML in PHP?
I'm new to PHP, and most of the time I have been 'echo'ing my HTML. Today, I found this way of doing it, which makes things 1000 times easier:
<?php if(get_field('field_name')){ ?>
...
1
vote
2answers
1k views
When isset() should be used on Array without specifying key?
I have learned that isset($array) is not required when checking for existence of particular key, however I also know that there is some reasons to check, without known key, if $array is instantiated.
...
6
votes
2answers
614 views
C++11 Feature Checking
How do I check for presence of individual C++0x/C++11 language features? I know Clang has a nice system for this. What about GCC, Visual Studio or Boost? I guess one way to do it is to detect the ...
2
votes
9answers
148 views
Is there an easier way of representing conditions in C++?
I wrote a basic tic-tac-toe game based on multidimensional arrays. g[3][3]. In my program I have about 9 conditions like the one I am about to show you:
if((g[0][0] == X && g[0][1] == X ...
1
vote
2answers
78 views
Which languages have a primitive operation for swapping variables?
In most languages, if you want to swap two variables, it's something like:
var c = b
b = a
a = c
Yes, you can do fancy hacks with XOR if you like but it's generally 3 lines of code for a single ...
2
votes
1answer
78 views
Implementing Feature Toggles in Perl5
i'd like to be able to create "ghost" packages and subs. I have a configuration (ini) file with entries like this:
[features]
sys.ext.latex = off
gui.super.duper.elastic = off
user.login.rsa = on
...
10
votes
3answers
1k views
Python type() or __class__, == or is
I want to test whether an object is an instance of a class, and only this class (no subclasses). I could do it either with:
obj.__class__ == Foo
obj.__class__ is Foo
type(obj) == Foo
type(obj) is Foo
...
1
vote
1answer
127 views
How to use [function] in webdna
I have been spending hours digging in Govinda great job in WebdnaCodeSparker.
I must confess I have never been using the [function] and I now wondering how to use it...
I went thought the doc, it ...
1
vote
1answer
400 views
When will the Javascript “for…of” loop be implemented in Chrome Chrome? [closed]
I just coded a function using the Javascript for...of loop, assuming it had been implemented in Chrome (as in Firefox 13).. It has not.
Does anyone know where i can find out if, and when it is ...
3
votes
3answers
336 views
Ignore Ada Function Return Values
Is there a way to ignore return values in Ada functions?
I have a function which imports from an Intrinsic.
subtype int32 is Interfaces.Interger_32;
function Intrinsic_Sync_Add_And_Fetch
(P : ...
4
votes
5answers
123 views
What is it called in Java when you create an instance on the fly?
In code,
class MyObject {
public String doThing() {
return "doh";
}
}
class MyClass {
private myObject = null;
public MyClass() {
myObject = new MyObject() {
...
5
votes
5answers
287 views
If Java has no Preprocessor what is “import”
This article says No More Typedefs, Defines, or Preprocessor in 2.2.1 . In C++ the include is part of the preprocessor. What is the import?
0
votes
1answer
86 views
Noexcept equivilent in C#
I want to ask is there in C# analogue for C++ "noexpect" attribute for methods which does not generate any exceptions. Simething like that:
public int SomeMethod() noexpect
{
throw new ...
0
votes
2answers
298 views
Why does not exists enum-extensions in C#?
I think that many C# developers collided with a such problem: there is some enumeration in standart .net library and many standart classes and their methods to work with them. But if you want to ...
2
votes
5answers
207 views
Default non indexer properties in C#
How can you create a default - non indexer - property in C#?
What I mean by this is I can see that I can create indexer default properties as illustrated on this MSDN page.
This allows me to do ...
4
votes
3answers
425 views
Smalltalk runtime features absent on Objective-C?
I don't know well Smalltalk, but I know some Objective-C. And I'm interested a lot in Smalltalk.
Their syntax are a lot different, but essential runtime structures (that means features) are very ...
1
vote
2answers
120 views
What are some of the features coming to Visual Studio vNext? [closed]
I've been curious about some of the features that are coming to the next iteration of Visual Studio, and I'm thinking it would be nice to compile a list of confirmed or rumored features from around ...
0
votes
2answers
40 views
Triggering a call to a second method upon calling a first method
Say you have method1 that contains no explicit calls to method2.
Do any programming languages support a way to call method2 when method1 is called with no modification whatsoever to the first method? ...
2
votes
5answers
80 views
What are the arguments against the use of the “<?=”? [duplicate]
Possible Duplicate:
Are PHP short tags acceptable to use?
The <?= is one of the very few elegant things about PHP, IMO. Yet, there are people that deliberately avoid it (in favor of the ...
0
votes
1answer
41 views
php - is there some built-in way to get the last matched pattern?
echo preg_replace("/f(o)o/", 'b$1r', 'This is foo.');
$var = ??? // here I want to get what $1 captured
For "built-in" I mean some PHP special variable, like Ruby's $1.
If PHP hasn't a proper ...




