0
votes
2answers
44 views
How to find the variables defined in a function.
Suppose I have a long javascript function such as
function test() {
var x;
var a;
...
...
...
...
...
}
is there any way I can ask the function itself to tell me what …
0
votes
2answers
38 views
I’m trying to do Ackermann’s Function on IBasic
Ackermann's Function is a recursive mathematical algorithm that can be used to test how well a computer performs recursion. Design a function ackermann(m,n), which solves Ackermann's Function. Use …
0
votes
3answers
75 views
jQuery - Save Function Result Into a Variable
I have this function, which loads a select from a database.
function Competition() {
$(document).ready(function() {
$.ajax({
url: "load-comp.php",
cache: false,
…
0
votes
2answers
66 views
need base64 encode/decode in c
I need a function to encode base64 and a function to decode base64 string in c. I found http://base64.sourceforge.net/b64.c but the functions work on files, not strings, and add line breaks. I need …
2
votes
4answers
172 views
Generics and Functions in C#
Here is some code, it won't compile but essentially want I want to create is a function that parses as CSV file and then converts the values in the CSV list to a specific type.
Func<string, …
2
votes
5answers
140 views
Replacing a function definition in C [closed]
Possible Duplicate:
What is the best solution to replace a new memory allocator in an existing code?
I'm writing a library in C. I'd like to know if there is a way to divert every malloc() …
3
votes
6answers
121 views
Define two functions, or branch within one?
I was reading about how to detect the encoding of a file in PHP, and on some blog or somewhere, it was suggested to do this:
if (function_exists('mb_detect_encoding')) {
function is_utf8($str) {
…
0
votes
4answers
63 views
Javascript file- is function in error? Need help!
I am trying to see if my JavaScript file's function is written correctly in order to display "Sunday, December 24, 2006". So here is the function:
function XmasDays(thisDate) {
var XMYear = …
1
vote
3answers
37 views
How to disable eval function without going to php.ini file?
Hello All,
Is there a way to disable eval function without doing so from php.ini file.
I have tried ini_set function but even that doesn't work.
Basically I want my framework users to decide whether …
1
vote
4answers
55 views
Simple Automatic Classification of the (R-->R) Functions
Given data values of some real-time physical process (e.g. network traffic) it is to find a name of the function which "at best" matches with the data.
I have a set of functions of type y=f(t) where …
6
votes
1answer
102 views
How do you define a type for a function in Scala?
I'm hoping there is a way to define a type for a function in Scala.
For example, say I want a function that takes two Ints and returns a Boolean, I could define a function that uses that like this:
…
0
votes
9answers
126 views
Should a function’s comment include descriptions of work done by functions it calls?
Let's say I have a function called DisplayWhiskers() which puts some slashes and backslashes on the screen to represent an animal's whiskers like this: /// \\\.
I might write a comment for this …
1
vote
1answer
89 views
Plotting functions in R
Is there a way of overlaying a mathematical function on top of data using ggplot?
## add ggplot2
library(ggplot2)
# function
eq = function(x){x*x}
# Data
x = (1:50)
y = …
7
votes
5answers
261 views
Why should functions always return the same type?
I read somewhere that functions should always return only one type
so the following code is considered as bad code:
def x(foo):
if 'bar' in foo:
return (foo, 'bar')
return None
I guess the …
31
votes
24answers
3k views
Best Practice: Should functions return null or an empty object?
What is the best practice when returning data from functions. Is it better to return a Null or an empty object? And why should one do one over the other?
Consider this:
public UserEntity …
