0
votes
3answers
102 views
Can I extract C++ template arguments out of a template class?
Basically, given a template class like this:
template< class Value > class Holder { };
I would like to be able to discover the type Value for a given Holder class. I thoug …
6
votes
5answers
180 views
C++ implicit template instantiation
I currently have a class hierarchy like
MatrixBase -> DenseMatrix
-> (other types of matrices)
-> MatrixView -> TransposeView
…
0
votes
3answers
86 views
How can I get this snippet to work?
I'd like to port a little piece of code from Ruby to Groovy, and I'm stuck at this:
def given(array,closure) {
closure.delegate = array
closure()
}
given([1,2,3,4]) {
…
2
votes
1answer
58 views
Why can’t I use attr_accessor inside initialize?
I'm trying to do an instance_eval followed by a attr_accessor inside initialize, and I keep getting this: `initialize': undefined method 'attr_accessor'. Why isn't this working?
T …
0
votes
1answer
101 views
Using groovy metaClass to mock out Shiro SecurityUtils in bootstrap
For further background, see http://grails.markmail.org/message/62w2xpbgneapmhpd
I'm trying to mock out the Shiro SecurityUtils.getSubject() method in my BootStrap.groovy. I decid …
2
votes
2answers
96 views
__FILE__ macro manipulation handling at compile time.
One of the issues I have had in porting some stuff from Solaris to Linux is that the Solaris compiler expands the macro __FILE__ during preprocessing to the file name (e.g. MyFile. …
3
votes
4answers
93 views
Detecting that a method was not overridden
Say, I have the following 2 classes:
class A
def a_method
end
end
class B < A
end
Is it possible to detect from within (an instance of) class B that method a_method is o …
1
vote
4answers
166 views
Template metaprogram converting type to unique number
I just started playing with metaprogramming and I am working on different tasks just to explore the domain. One of these was to generate a unique integer and map it to type, like b …
3
votes
4answers
125 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
104 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
62 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
39 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
73 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
162 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
2answers
47 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 …
