The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
83 views

Erlang application undef error (exited: {bad_return,)

I am trying to run a custom application but get multiple errors. I believe the main egs app gets an error because it calls the egs patch app which has an undefined type. I cant figure out how to get ...
20
votes
1answer
299 views

Why does Perl's string multiplication not warn on undef?

Under use strict; use warnings; my $foo = undef; the expressions $foo . '' and "$foo" both produce Use of uninitialized value $foo in ... at ... but the following expression gives the ...
3
votes
3answers
92 views

Initialising with “undef” for self-documenting code?

Sometimes I'd like to write: my $var = shift // undef; # argument is optional # or my $var = $val{optional_value} // undef; to indicate that it is ok to have the ...
0
votes
1answer
88 views

Facebook connected but /me user is an empty object

I used the example from the facebook documentation but after granting facebook permission to connect I cannot get any user info from the user object. The user is defined but all its attributes are ...
2
votes
1answer
745 views

How do I remove all undefs from array?

While reading from a configuration file in Perl there might be cases when a line is invalid and it does not need to get added to my array of valid lines. Since I'm using a for loop here, even the ...
4
votes
1answer
590 views

How do I remove a Tcl procedure?

How do I remove a tcl procedure? One can unset a variable, override an alias with interp alias {} myproc {} otherproc, override a proc with one defined inside another namespace with namespace ...
1
vote
4answers
148 views

c# Quick way to undef all parameters

I have a C# winform app which is doing a lot of calculation. there is a "run" button to trigger the process. I would like to be able to "re-trigger or re-run or re-submit" the information without ...
14
votes
3answers
478 views

When do we need #ifdef before #undef?

In many of the C and C++ files I have seen macros like this: #ifdef X #undef X // no statements in between #endif I feel that, it's adequate to simply write: #undef X If the macro X wasn't ...
6
votes
4answers
459 views

Perl: mapping to lists' first element

Task: to build hash using map, where keys are the elements of the given array @a, and values are the first elements of the list returned by some function f($element_of_a): my @a = (1, 2, 3); my %h = ...
0
votes
1answer
143 views

loop through headers in C preprocessor

Is there a way to loop through all the included/defined header files and then #undef them all? If looping is the issue, is there another way to #undef all of them with ease?
0
votes
2answers
218 views

perl out of memory message processing just 64 XML file each of 2MB - unix

I tried globalising variables and undef , increasing data segment space in unix , localising variable , but still getting the same error. I need to process around 750 files .Can anyone help? Thanks. I ...
3
votes
3answers
1k views

Perl - Is there a built-in function to clear all variable values

I'm looking for a way to clear all of my arrays in a Perl program. Currently, I'm calling a subroutine that explicitly "resets" all arrays: sub clear_arrays{(@array1,@array2,@array3)=((),(),());} ...
0
votes
1answer
317 views

#undef main gives no result

I'm working with MVisualC++ 2010 and when I try to undefine the "main", there's no result and the console launches as usual. I was expecting some missing entry point error or something. Why is that? ...
2
votes
2answers
1k views

Warnings in Perl Eval

I need to hide warnings within eval but the rest of the code should continue to throw warning messages. Here is what I have - eval "\$value = $hash->{key}"; now value of $hash->{key} could be a ...
2
votes
1answer
96 views

Why does defined function not work?

I have a piece of code which does not work as I expect it to work. MAinly the defined function does not work. @jobs = qw[job1 undef job2]; if(defined($jobs[1])) { print "Job 1 is defined"; } I ...
3
votes
2answers
2k views

practical use for undef [duplicate]

Possible Duplicate: undef - Why would you want to undefine a method in ruby? Can anyone lay out a practical use for undef in ruby? I'm coming from languages like javascript and python that ...
2
votes
3answers
258 views

I am a bit lost as to the meaning of this C preprocessor statement,

So, to start off, here's the code, with actual names switched for generic ones to limit confusion. /* Get the list of Hotkey commands */ #define A_COMMANDS_MACRO(a, b, c, d) a = b , enum { #include ...
1
vote
2answers
821 views

scope of #undef C++

I have a question about using #undef to redefine macros. I have a file global.h which contains a number of #define-d macros. In the code that uses these macros, I find that the values that the macros ...
2
votes
3answers
659 views

Good way to document #undef in doxygen

I currently have a couple of #define in c files that turn off some functionality to hardware for testing. However, I want to document them with doxygen when they are undefined as well. For example: ...
1
vote
1answer
843 views

Assigning multiple values in perl, trouble with undef

I want to return several values from a perl subroutine and assign them in bulk. This works some of the time, but not when one of the values is undef: sub return_many { my $val = 'hmm'; my ...
5
votes
4answers
1k views

In Perl, is there graceful way to convert undef to 0 manually?

I have a fragment in this form: my $a = $some_href->{$code}{'A'}; # a number or undef my $b = $some_href->{$code}{'B'}; # a number or undef $a = 0 unless defined($a); $b = 0 unless defined($b); ...
2
votes
3answers
435 views

Why is 'undef' not detected by this Perl fragment?

I would expect the block in the second 'if' statement to be entered because of the undef value but the logs show that it isn't being entered. sub getcmd{ my $self = $_[0]; if ( $self->_recv == ...
3
votes
4answers
3k views

How can I print a literal 'null' for undefined values in Perl?

I am running a query 'describe table' and it returns value of 'null' for the 'default' column. However, when I try to print the value from database to an HTML table it is not printing 'null'. It is ...
3
votes
3answers
2k views

How can I render undefined values from printf in Perl?

I'm looking for an elegant way to denote undefined values in situations where formatted numbers usually render. I'll work up a small example. For starters, you of course can't use this: ...
4
votes
9answers
3k views

Check for value definedness in C++

I'm working in C++ and I need to know if a scalar value (for instance a double) is "defined" or not. I also need to be able to "undef" it if needed: class Foo { public: double get_bar(); ...
10
votes
6answers
1k views

How can you get Perl to stop when referencing an undef value?

How do you get Perl to stop and give a stack trace when you reference an undef value, rather than merely warning? It seems that use strict; isn't sufficient for this purpose.