Tagged Questions

3
votes
4answers
110 views

How do I invoke a non-default constructor for each inherited type from a type list?

I'm using a boost typelist to implement the policy pattern in the following manner. using namespace boost::mpl; template <typename PolicyTypeList = boost::mpl::vector<> …
0
votes
1answer
94 views

Template specialization problem

Hi, I'm trying really hard to made this work, but I'm having no luck. I'm sure there is a work around, but I haven't run across it yet. Alright, let's see if I can describe the p …
3
votes
2answers
57 views

How can I find the names of argument variables passed to a block

Im trying to do some metaprogramming and would like to know the names of the variables passed as block arguments: z = 1 # this variable is still local to the block Proc.new { …
0
votes
1answer
31 views

How to add a new closure to a class in groovy.

From Snipplr Ok here is the script code, in the comments is the question and the exception thrown class Class1 { def closure = { println this.class.name print …
0
votes
2answers
28 views

A guide to Boo’s metaprogramming and extensibility features?

I'm interested in learning about Boo's more powerful features such as syntactic macros, parser support (Ometa?), compiler pipeline, etc. My impression is that these areas have bee …
0
votes
2answers
66 views

dynamically adding functions to a Python module

Our framework requires wrapping certain functions in some ugly boilerplate code: def prefix_myname_suffix(obj): def actual(): print 'hello world' obj.register(actu …
3
votes
2answers
159 views

C++ templates problem

I have defined a generic tree-node class like this: template<class DataType> class GenericNode { public: GenericNode() {} GenericNode(const DataType & inData) : …
0
votes
4answers
68 views

Can Ruby operators be aliased?

I'm interested in how one would go in getting this to work : me = "this is a string" class << me alias :old<< :<< def <<(text) old<<(text) …
0
votes
2answers
63 views

ruby metaprogramming - yield block not working in dynamically added method

I'm working on extending the NotAMock framework for stubbing methods in rspec, and getting the stubs to yield to a methods block. The code in this Gist works perfectly when I code …
0
votes
3answers
120 views

Custom C++ Preprocessor / Typeful Macros

Having seen the advantages of metaprogramming in Ruby and Python, but being bound to lower-level languages like C++ and C for actual work, I'm thinking of manners by which to combi …
3
votes
1answer
43 views

How do I undo meta class changes after executing GroovyShell?

For example, if I execute a Groovy script, which modifies the String meta class, adding a method foo() GroovyShell shell1 = new GroovyShell(); shell1.evaluate("String.metaClass.fo …
1
vote
2answers
70 views

How to get the nested modules dynamically from an object?

given: module A class B end end b = A::B.new we want to be able to get the module nesting as an array. This can be done if the class is known in advance. eg: module A cl …
9
votes
4answers
304 views

Can you make custom operators in C++?

Is it possible to make a custom operator so you can do things like this? if ("Hello, world!" contains "Hello") ... Note: this is a separate question from "Is it a good idea to.. …
4
votes
3answers
86 views

Ruby: How to evalulate multiple methods per send command?

Let's say I have an XML::Element...I want to do something like: my_xml_element.send("parent.next_sibling.next_sibling")
0
votes
3answers
24 views

Groovy: adding methods to instances and classes with metaClass doesn’t work?

See the code below. Old instances of a class created before a method is added to the class using metaClass should not understand the method right? The assert statement below the …

1 2 3 4 5 12 next
15 30 50 per page