2
votes
1answer
39 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::C …
3
votes
4answers
172 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 …
2
votes
3answers
199 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 < ActiveRec …
3
votes
3answers
95 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
125 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 cla …
1
vote
2answers
194 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 …
2
votes
4answers
248 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. (A …
0
votes
1answer
82 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 refe …
16
votes
8answers
680 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 examp …
2
votes
9answers
721 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
380 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.abst …
2
votes
1answer
202 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
679 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 …
0
votes
1answer
72 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 the …
6
votes
4answers
353 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 …
