Metaprogramming is the capability to reprogram ones programming environment, as with macros or metaclasses.
4
votes
2answers
74 views
How does this template result in compile time optimization over runtime recursion?
I understand the well-known example of creating a compile-time factorial calculation with templates such that recursive runtime calculations are not necessary. In such an example, all the required ...
2
votes
2answers
41 views
The arcane formals(function(x){})$x
What is the object formals(function(x){})$x?
It's found in the formals of a function, bound to arguments without default value.
Is there any other way to refer to this strange object? Does it have ...
2
votes
1answer
33 views
Obtaining the types of local variables in Boost Phoenix
How can I obtain the types of the local variables used within a scoped Boost Phoenix statement? Using Phoenix and Proto I can extract numerous aspects of a Phoenix expression. For example, the ...
2
votes
1answer
87 views
What is this code doing and how can I write it more simply?
[:initial_amount, :rate_increase_amount].each do |method|
define_method method do
self["#{method}_in_cents".to_sym].to_f/100 if self["#{method}_in_cents".to_sym]
end
define_method ...
0
votes
2answers
34 views
Make object method_missing behave like class method_missing
I have created a class which I have some constant hashes. I'd like to type Myclass.myhash.hashkey and to show the value of the hash. Right Now I have created a similar behavior with method_missing but ...
1
vote
1answer
23 views
Include an instance method from a module and then outputting a class variable that was defined in the base class
I'm attempting to include a method from a module in a class, and have the method that is included access a class variable of the base class that's doing the including, but it's not working like I ...
0
votes
0answers
32 views
c++ custom size template vector class - metatemplate programming
By taking into consideration the notion of metatemplate programming how could one create a custom size template vector class that would generate itself at compile compilation time, would it be ...
-1
votes
0answers
31 views
Metaprogramming class instance variable creator for a specific class in Ruby
Edit: Okay - so class variables aren't the best (or even viable) way to do this. Could it be done by just defining a function that returns
Let's say we want to embed some metadata about a family of ...
1
vote
1answer
35 views
python metaclasses of classes created by type
Code is better than words here:
class MetaA(type):
def __new__(cls, name, bases, attrs):
print "MetaA"
return super(MetaA, cls).__new__(cls, name, bases, attrs)
class A(object):
...
1
vote
3answers
64 views
Can a ruby object call super on a “grandparent”?
If I have a class Salad with a method chew and I use super in it, it will call the next available chew method available going up the chain of ancestors. What if I want to "reach two levels up" (to ...
1
vote
0answers
32 views
How does module_eval / class_eval / instance_eval counts the line numbers
I have found the line_number passed to class_eval, module_eval and instance_eval doesn't match the line numbers reported by the error. This behaviour is not explained by the ruby-doc which says: (use ...
0
votes
1answer
43 views
Adding instance methods during class definition
I'm currently working on my first gem and making my first experiences in meta programming.
Therefore, I would like some feedback on how to correctly define an instance method during a class ...
5
votes
2answers
99 views
duck typing in D
I'm new to D, and I was wondering whether it's possible to conveniently do compile-time-checked duck typing.
For instance, I'd like to define a set of methods, and require that those methods be ...
2
votes
1answer
32 views
when calling instance_eval(&lambda) to pass current context got error 'wrong number of arguments'
To be clear - this code is running perfectly - code with proc
but if instead I change Proc.new to lambda, I'm getting an error
ArgumentError: wrong number of arguments (1 for 0)
May be this is ...
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'
...
2
votes
1answer
49 views
Finding all classes whose name matches a string
I would like to find all ruby classes whose name matches a string(ignoring case).
That means that the string should be a substring of the class name.
So when you search for 'stri' you should get the ...
0
votes
3answers
61 views
Ruby Object Model clarification
In Ruby, I can write,
Dog = Class.new
so here, Dog is an Object which is an instance of Class.
Also, I can write
fido = Dog.new
which is possible only if Dog is a Class.
Is Dog here a Class or ...
0
votes
1answer
50 views
template method specialization for ptr to struct and vector of ptr to struct?
If I have a variant that contain two types- pointer to struct, and vector of pointer to struct. How do I specialize the two template methods in boost::static_visitor to handle those two cases?
...
3
votes
1answer
141 views
Template metaprogramming within the body of a template class
I'm trying to write a partially specialised template function within the body of a template class/struct. The partial specialisation is done to perform recursive template metaprogramming.
...
0
votes
1answer
59 views
Meta programming and runtime code generation
I have a requirement where I need to generate the function arguments at runtime.
At compile time, I do not know the number of arguments or their type. It has to be read from a file at runtime, ...
3
votes
3answers
95 views
capturing an expression as a function body in R
I'm trying to write a program that takes an expression as an input and returns a function with that expression bound as its body.
caller <- function (expr, params) {
Function <- function ...
1
vote
1answer
57 views
Overlapping instance in haskell
I'm reading code of the HList library. There is an HBetween class which is a type level function taking a HNat n and return a list of HNats forming a range [HZero, n). I want to implement an other ...
1
vote
2answers
72 views
Is it possible to “wrap” an R function to amend its functionality?
Is it possible to wrap an R function to amend its functionality?
Here's a toy example to explain what I mean. Consider this function sum2:
sum2 <- function (x) if (length(x) == 1) { cat(x); ...
0
votes
1answer
34 views
Define instance method of a class after class already defined in ruby
I have some problem with extending class with instance method after separate module is included into separate class
module ActsAsCommentable
def self.included(commentable)
Thread.class_eval do
...
0
votes
2answers
46 views
Want to instantiate a ruby class using a private constructor from factory
I am used to c#/.net, so I come form a typesafe background. I am using Ruby. I want to create a class (ClassA) that has a private (I'd settle for protected if I need to) constructor. The reason ...
1
vote
1answer
77 views
Code generation with macros: Class with members and constructor
Let's say I want to define classes of the following structure:
struct MyClass {
int x;
bool y;
float z;
MyClass(QVariantMap data) : x(data["x"]), y(data["y"]), z(data["z"]) {}
};
As ...
1
vote
1answer
93 views
Rails Modules: How to define instance methods inside a class method?
I'd like to create a module called StatusesExtension that defines a has_statuses method. When a class extends StatusesExtension, it will have validations, scopes, and accessors for on those statuses. ...
2
votes
2answers
67 views
Develop a static library in Visual C++ for efficient numerical computation
I've the following problem:
I need to devlop a static library (*.lib) in visual C++ for efficient numerical computation.
I've started defining a new template class "Matrix" and I've read that best ...
2
votes
2answers
64 views
Ruby class variables in metaclass
I have a ruby class like this:
class C
@@v = 1
class << self
p @@v # everything goes well here
end
end
class << C
# here I get an exception
# `singletonclass': ...
0
votes
4answers
96 views
method_missing with unquoted string arguments in Ruby - possible?
I'm learning Ruby and want to be able to do this:
Printer.hi there
and have Ruby output
"hi there"
So far I have the following implementation
class Printer
def method_missing(name, *args)
...
-1
votes
2answers
34 views
How do I check to see if an object respond_to? MyObject#attr_reader :my_property but not setter
I am writing some tests for a ruby gem...
How do I check to see if an object respond_to? MyObject#attr_reader :my_property but not MyObject#attr_writer :my_property or MyObject#my_property(value) # ...
0
votes
1answer
53 views
How do I write my own loop_until?
I'm practicing my Ruby meta-programming and trying to write my own loop method that will handle most of the ugliness in listening to a socket, but give the programmer the chance to specify the loop ...
0
votes
1answer
52 views
Implementing Matlab's colon : operator in C++ expression templates class
I'm implementing a C++ expression templates library. I have set up a proper SubMatrixExpr class to collect elements within a matrix, enabling a syntax like
B = SubMatrix(A,1,3,2,10);
which is ...
5
votes
2answers
147 views
How to know if a type is a specialization of std::vector?
I've been on this problem all morning with no result whatsoever.
Basically, I need a simple metaprogramming thing that allows me to branch to different specializations if the parameter passed is a ...
7
votes
2answers
177 views
“Member is private” although I don't access it from outside, when using trailing return type
How can I fix the following problem?
I'm writing some functional library which defines the following functions which are relevant for this question:
call(f,arg): Calls a function with an argument. ...
0
votes
1answer
29 views
Can I debug dynamically added Ruby method?
I want to store brief snippets of code in the database (following a standard signature) and "inject" them at runtime. One way would be using eval(my_code). Is there some way to debug the injected code ...
0
votes
2answers
50 views
Rails: Ruby Code That Can Scan Ruby Code
I'm starting a project with several contributors. We want to keep track of who wrote what code, as well as to get a count of how many methods, controller actions, and views a contributor has written. ...
1
vote
2answers
90 views
How can I read a variable number of values into a std::tuple?
I'm working on code that uses BSD file descriptors to read and write values from and to a pipe (with the read and write calls). This is part of a simple IPC system where one process tells another to ...
0
votes
1answer
28 views
How to collect all atrributes of Model including these from Hstore?
Right now to collect all attributes names I have to:
@attr_names = (User.attribute_names + User.accessible_attributes.to_a - ["", "data"]).uniq
Is there a better way to do that?
1
vote
2answers
53 views
How to pass a method to instance_eval?
I want to call instance_eval on this class:
class A
attr_reader :a
end
passing this method b:
class B
def b(*args)
a
end
end
but this is happening:
a = A.new
b = B.new
...
0
votes
1answer
54 views
Exception handled, but after being caught program is aborted
I'm writing a C++ library based on expression templates (metaprogramming).
I have a Matrix class and I have implemented also a SubMatrix class to extract a part of a matrix. I have already set up ...
0
votes
0answers
74 views
Any way to properly type Scala classes that were generated at runtime with ASM?
Noob here, I'd like to extend the class, get a class literal, use it as a type parameter, or cast to it.
Currently I can instantiate my ASM generated class and invoke it's methods with reflection, ...
0
votes
2answers
45 views
Using instance_exec and converting a method to a Proc
I can take a block of code, instance_exec it, and get the proper result. I would like to take a method off a different object and call one of it's methods in my scope. When I take a method from a ...
1
vote
1answer
94 views
SFINAE - Detect constructor with one argument
Does anyone know how to detect a constructor with one argument? For example, this struct should have a negative result:
struct MyStruct
{
MyStruct( int x, int x2 ) : y( x ) {}
int y;
};
I have ...
1
vote
1answer
50 views
How do I get and use a class type from a Java class that I've dynamically created at runtime using ASM?
I'd like extend the class, get a class literal, use it as a type parameter, or cast to it.
I already have a workaround, but I'm still curious.
Currently I can define a class at runtime with ASM, ...
0
votes
1answer
226 views
Constructor Argument Forwarding through Interface
I'm in need of a generic way to create an instance of any type. This task needs to be performed from a non-templated object, and so I'm currently using an interface like so:
class Interface
{
public:
...
7
votes
1answer
413 views
How Pony (ORM) does its tricks?
Pony ORM does the nice trick of converting a generator expression into SQL. Example:
>>> select(p for p in Person if p.name.startswith('Paul')).order_by(Person.name)[:2]
SELECT "p"."id", ...
0
votes
1answer
67 views
is it possible to write a c++ function that stringizes?
How would you go if you had to write a proper C++ function that does the same as the operator '#' in macros?
It would be useful if it were possible to do it at runtime.
2
votes
1answer
168 views
Are F# quotations useful for anything? [closed]
I thought that I would be able to use quotations to accomplish what I'm trying to do (create a tree of expressions which I can store in a DB and execute later on). Much to my dismay, however, I've ...
2
votes
0answers
52 views
Intercepting def in a block
I have a method that needs to do a bit of sorcery on the attached block. A sample of such a block might be
myMethod do
somemethod x
someother y
def name(a,b)
a+b
end
end
the ...



