3
votes
8answers
213 views
Just-In-Time Derivation
There's a less common C++ idiom that I've used to good effect a few times in the past. I just can't seem to remember if it has a generally used name to describe it.
It's somewhat related to mixins, …
1
vote
2answers
68 views
Rails - Why can’t I use a method I created in a module in my tests?
I created a module in lib directory and I can freely call the various methods it contains throughout my Rails app (after adding include ModuleName) with no problems.
However when it comes to tests, …
2
votes
1answer
51 views
Problem with mixins in a MooseX::NonMoose class
Consider the following:
package MyApp::CGI;
use Moose;
use MooseX::NonMoose;
use Data::Dumper;
extends 'CGI::Application';
BEGIN {
print "begin isa = " . Dumper \@MyApp::CGI::ISA;
};
print …
3
votes
4answers
204 views
ruby inheritance vs mixins
In Ruby, since you can include multiple mixins but only extend one class, it seems like mixins would be preferred over inheritance.
My question: if you're writing code which must be extended/included …
3
votes
3answers
127 views
Objective-C category compared to Mixins
Is the concept of the Objective-C categories in anyway similar to the concept of mixins? If so: what are the similarities? In not: what are the differences?
3
votes
2answers
171 views
How do I write a hygienic Ruby mixin?
Say I'm writing a mixin module that adds functionality to a third-party class. Obviously some of the methods and instance variables I want to make accessible to the third-party class and its clients. …
2
votes
4answers
256 views
Why does DataMapper use mixins vs inheritance?
So I'm just curious about this:
DataMapper uses a mixin for its Models
class Post
include DataMapper::Resource
While active-record uses inheritance
class Post < ActiveRecord::Base
Does …
0
votes
1answer
102 views
How to use the [mixin] tag in AS3 applications?
I have the following two projects in in Flex Builder 3:
One AS3 library project (generates a SWC file)
One Flex application project (MXML Application)
The MXML Application references to the AS3 …
1
vote
2answers
314 views
Mixing Multiple Traits in Scala
Quick Note: Examples from this tutorial.
Suppose I have the following Traits: Student, Worker, Underpaid, Young
How could I declare a class (not instance) CollegeStudent with all these traits?
…
0
votes
1answer
62 views
Would extracting page metadata be a good use of multiple inheritance?
I was wondering if I have a couple of models which both include fields like "meta_keywords" or "slug" which have to do with the web page the model instance will be displayed on, whether it would be …
2
votes
1answer
295 views
Mixins vs. Traits
What is the difference between Mixins and Traits?
According to Wikipedia, Ruby Modules are sort of like traits. How so?
2
votes
4answers
291 views
Abstract classes vs. interfaces vs. mixins
Could someone please explain to me the differences between abstract classes, interfaces, and mixins? I've used each before in my code but I don't know the technical differences. (And yes, I've …
0
votes
0answers
67 views
Sythhesize a few classes using different combination of member functions
i am interested to synthesize a few classes which will have some/all of the functions as in the class res_obj.
struct res_obj
{
int* res_;
res_obj() ///method 1 : no arg constructor
: …
0
votes
1answer
84 views
Rails: How to override stylesheet_path
Hi,
I've been trying to override Rails' stylesheet_path helper, but I haven't found a way how. I can't just open the ActionView::Helpers::AssetTagHelper module and override it there, because Rails …
1
vote
1answer
469 views
Abstract class + mixin + multiple inheritance in python
So, I think the code probably explains what I'm trying to do better than I can in words, so here goes:
import abc
class foo(object):
__metaclass__ = abc.ABCMeta
@abc.abstractmethod
def …
