The dynamic-function tag has no wiki summary.
3
votes
1answer
56 views
Python dynamic functions from strings
I came across few related answers but not what I want.
Here is the code I have now:
code_str = """
print "this is my global x = " + x
print "And another line is done"
"""
x = 'mystery'
...
3
votes
1answer
71 views
Php - understanding create_function() - passing simple variable
First time I am trying to use the dynamic create_function, and up to now, not much success :-)
My function is this :
function o99_brsa_custom_widgets() {
global $wp_meta_boxes;
...
1
vote
1answer
113 views
Dynamic function calls at runtime (va_list)
There is a way in C to obtain a dynamic length argument list with va_list, as described here:
http://www.cprogramming.com/tutorial/c/lesson17.html
That quite simple, but most times in C++ not needed. ...
0
votes
2answers
61 views
python - how can Idynamically create a function with a name based on a string read in from a file?
Let's say I have a file containing the string "unpredictable_words". I would like to read in this string and then define a function as follows:
def test_unpredictable_words(self):
...
3
votes
5answers
102 views
Variable functions in Java
Is it possible through some method to assign a function to a variable in Java, like in PHP or JavaScript?
...Or does this area works on a different way when it comes to Java?
0
votes
2answers
158 views
Python dynamically created custom named functions [duplicate]
Possible Duplicate:
Python dynamic function creation with custom names
I have written a little script to determine whether what I wanted to do is possible. It is.
My goal is to ...
2
votes
5answers
488 views
Python dynamic function creation with custom names
Apologies if this question has already been raised and answered.
What I need to do is very simple in concept, but unfortunately I have not been able to find an answer for it online.
I need to create ...
1
vote
1answer
82 views
How to change dynamically the js code?
How to replace a JS function's code at runtime? (the same functionality as C++ function pointers)
I have tried eval(), but when one of the parameters contains a byte value like 13 or 10 it throws an ...
2
votes
3answers
529 views
Using C++ with assembly to allocate and create new functions at runtime
I've been working on a (C++) project, which requires completely dynamically allocated functions, which means malloc/new and mprotect and then modify the buffer manually to assembly code. Because of ...
6
votes
1answer
242 views
Scala - Creating a basic dynamic function parser
I'm new to Scala but I was wondering it it is possible to implement a simple Equation parser in the language.
Say I have a few functions (much like Excel functions):
IF(Cond a=b, val_true, ...
3
votes
2answers
268 views
Fortran 90: Dynamic function creation from another function
I have a Fortran90 subroutine which takes a function as an argument, and I would like to pass a modified version of that function into another subroutine. I want the program to look something like ...
2
votes
3answers
531 views
Javascript: Passing local variables into a dynamically created function that is a parameter inside another function
I am using a function with the following parameterization (which cannot be changed):
my_function(data, callback_function(results, status) {});
I need to pass additional information to ...
2
votes
1answer
114 views
How do you dynamically call a method of an object?
in Perl I know you can use eval and *{$func_name} to call functions dynamically but how do you do this with methods of an object?
for example
EZBakeOven
sub make_Cake { ... }
sub make_Donut { ...
1
vote
3answers
1k views
How do you create a callback function (dispatch table) in Perl using hashes?
I want to call a main controller function that dispatches other function dynamically, something like this:
package Controller;
my %callback_funcs = ();
sub register_callback{
my ...
0
votes
2answers
333 views
Chrome Extension: Content Script -> Dynamic Function
I would like to call a dynamic function on a Content Script (Chrome Extension). But the common way doesn't work:
chrome.extension.onRequest.addListener(function cs_listener(request, sender, ...
0
votes
2answers
129 views
How to evaluate a full function string (including params) in javascript
I have a select (dropdown list) with options which correspond to actions. Each action corresponds to a generic javascript function that should be called on the changed event for the select. So it ...
2
votes
2answers
205 views
Storing php function variables in memcached
I was wondering if it is possible to store function variables in memcached. I wrote basic templating system which compiles xml templates into functions. The templates can get very big and I think I ...
1
vote
2answers
64 views
Script to execute 1 of 2 functions randomly?
Is it possible to modify the script below so that the value of each option is a function?
<?php
$option[0] = 'html option 1';
$option[1] = 'html option 2';
echo $option[rand()%count($option)];
...
2
votes
2answers
2k views
__callStatic(), call_user_func_array(), references, and PHP 5.3.1
I've been reading around on SO, and elsewhere, however I can't seem to find anything conclusive.
Is there any way to effectively carry references through this call stack, resulting in the desired ...
1
vote
4answers
862 views
How do I create a function at runtime in Objective-C
So it's late here, and my google skills seem to be failing me. I've found some great responses on SO before (time and time again), I thought you guys could help.
I have a neural network I'm trying ...
0
votes
4answers
763 views
Unable to call a function by using a string
I am trying to call a function in a class based on the string I passed in.
I tried following the steps at this link:
Calling a Function From a String With the Function's Name in Python
Here is my ...
0
votes
3answers
259 views
Dynamic functions, variable inputs
Right now, lets say I have code much like this...
$some_var=returnsUserInput();
function funcA($a) {...}
function funcB($a,$b) {...}
function funcC($a,$b,$c) {...}
$list[functionA] = "funcA";
...
0
votes
3answers
861 views
dynamic action names in codeigniter or any php mvc framework
I've noticed many sites are able to use a username or page title as an action. How is this done?
For example instead of www.example.com/users/my_username (where the users action is generic and ...
3
votes
2answers
2k views
Lua : Dynamically calling a function with arguments
Using Lua, I'm trying to dynamically call a function with parameters.
I want to send a string to be parsed in a way that:
1st argument is a class instance "Handle"
2nd is the function to be called
...
70
votes
9answers
44k views
How to call PHP function from string stored in a Variable
I need to be able to call a function, but the function name is stored in a variable, is this possible? e.g:
function foo ()
{
//code here
}
function bar ()
{
//code here
}
$functionName = ...