2
votes
1answer
45 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
189 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 …
2
votes
3answers
226 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 …
3
votes
3answers
113 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
153 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. …
1
vote
2answers
242 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?
…
2
votes
4answers
275 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 …
16
votes
8answers
725 views
What is a Mixin, and why are they useful?
In "Programming Python", Mark Lutz mentions "mixins". I'm from a C/C++/C# background, and I've not heard the term before. What is a mixin?
Reading between the lines of this example (which I've …
0
votes
1answer
94 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 …
2
votes
9answers
825 views
Implement Mixin In Java?
Using Java 6, how can I implement a mixin? It is very easy and possible in Ruby. How can I get similar in Java?
1
vote
1answer
419 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 …
2
votes
1answer
244 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
728 views
Groovy Mixins?
I'm trying to mix-in a class in my Groovy/Grails app, and I'm using the syntax defined in the docs, but I keep getting an error.
I have a domain class that looks like this:
class Person {
…
6
votes
4answers
371 views
What are some good examples of Mixins and or Traits?
I was reading up on Ruby, and learned about its mixins pattern, but couldn't think of many useful mixin functionality (because I'm not used to thinking that way most likely). So I was wondering what …
0
votes
1answer
78 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 …
