Tagged Questions

A mixin is a way to enhance an object with properties or methods from another object without inheriting from that object.

learn more… | top users | synonyms

57
votes
9answers
7k 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 ...
22
votes
2answers
638 views

Mixins vs composition in scala

In java world (more precisely if you have no multiple inheritance/mixins) the rule of thumb is quite simple: "Favor object composition over class inheritance". I'd like to know if/how it is changed ...
15
votes
5answers
2k 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 ...
15
votes
2answers
2k views

Mixins vs. Traits

What is the difference between Mixins and Traits? According to Wikipedia, Ruby Modules are sort of like traits. How so?
14
votes
2answers
811 views

Dynamic mixin in Scala - is it possible?

What I'd like to achieve is having a proper implementation for def dynamix[A, B](a: A): A with B I may know what B is, but don't know what A is (but if B has a self type then I could add some ...
13
votes
5answers
4k views

Is it possible to implement mixins in C#?

I've heard that it's possible with extension methods, but I can't quite figure it out myself. I'd like to see a specific example if possible. Thanks!
12
votes
11answers
7k 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?
10
votes
2answers
201 views

mixin terminology

In classic inheritance, Derived inherits from Base. With mixins, the (technical) base class is usually called the Mixin. What is the proper term for the (technical) class that inherits from the Mixin? ...
10
votes
6answers
194 views

reusing the copy-and-swap idiom

I'm trying to put the copy-and-swap idiom into a reusable mixin: template<typename Derived> struct copy_and_swap { Derived& operator=(Derived copy) { Derived* derived = ...
10
votes
2answers
1k views

Does Objective-C support Mixin like Ruby?

In Ruby, there's Modules and you can extend a class by "mixing-in" the module. Module myModule def printone print "one" end end Class myClass extend myModule end theOne = myClass.new ...
9
votes
2answers
452 views

Why does Ruby module inclusion exclude the module's singleton class?

When classes are inherited in Ruby the singleton classes are also inherited: class A def self.hello puts "hello" end end class B < A end B.hello #=> "hello" Yet with modules, this ...
9
votes
1answer
150 views

Can you define <=> in Ruby and then have ==, >, <, >=, and <= defined automatically?

Here's part of my Note class: class Note attr_accessor :semitones, :letter, :accidental def initialize(semitones, letter, accidental = :n) @semitones, @letter, @accidental = semitones, ...
9
votes
5answers
1k views

Mixin vs inheritance

What is the difference between a mixin and inheritance?
8
votes
4answers
340 views

What is C++ Mixin-Style?

I have just come across this keyword C++ Mixin-Style, do anyone know what this is? In this post, is has been answered as a design pattern. Is it the same design pattern as described in this document? ...
8
votes
3answers
1k 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?
8
votes
4answers
1k 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 ...
7
votes
4answers
2k 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 ...
7
votes
4answers
992 views

Is mixin considered a design pattern?

Are mixins considered a design pattern? Structural?
6
votes
1answer
150 views

Scala compiler cannot infer mix-in type for pattern matching

I have a use case for algebraic groups over finite permutation sets. Because I would like to use the group for various permutation classes which are otherwise unrelated, I would like to do this as a ...
6
votes
2answers
83 views

Is there a way to convert a function variable to a string in D?

Is there any way, given a function variable, to get the name of the function as a string? For example, if I have: void function(int) func; Is there some function x() such that I could get: x(func) ...
6
votes
1answer
160 views

In Ruby or Rails, why is “include” sometimes inside the class and sometimes outside the class?

I thought class ApplicationController < ActionController::Base include Foo is to add a "mixin" -- so that all methods in the Foo module are treated as methods of the ApplicationController. ...
6
votes
1answer
679 views

Mixins, variadic templates, and CRTP in C++

Here's the scenario: I'd like to have a host class that can have a variable number of mixins (not too hard with variadic templates--see for example ...
6
votes
9answers
474 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, ...
6
votes
2answers
3k 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? ...
5
votes
1answer
97 views

Is this a mixin and can it be done in c++?

I have my own array class template I would like to optionally add functionality to. As an example of functionality, take multithreading support: in some cases, I need arrays that put #pragma omp ...
5
votes
1answer
72 views

Can't add member to Map using dynamic mixin type for the key

The following statement compiles fine and works as expected: val map : Map[_ >: Int with String, Int] = Map(1 -> 2, "Hello" -> 3) However, if I try to add to the map: map + ((3,4)) or ...
5
votes
3answers
588 views

How is Ruby module inclusion not really 'multiple inheritance' and how does the Ruby style avoid the problems associated with multiple inheritance?

Matz supposedly said "mixins could do almost everything multiple inheritance do, without the associated drawbacks" (Matz words)." First of all, why is Ruby module inclusion not 'multiple inheritance' ...
5
votes
3answers
117 views

Invoking interface extension methods from implementor is weird in C#

Invoking an extension method that works on a interface from an implementor seems to require the use of the this keyword. This seems odd. Does anyone know why? Is there an easier way to get shared ...
5
votes
1answer
341 views

Self type inheritance in scala

Say I have the following traits: trait A trait B { this: A => } trait C extends B // { this: A => } Compiler error: illegal inheritance; self-type C does not conform to B's selftype B with ...
5
votes
3answers
666 views

How do you access an instance variable within a mixin method?

How do you access an instance variable within a mixin method? I can think of 2 ways, but both seem problematic. Have the mixin method access the instance variable directly as any class method would, ...
4
votes
3answers
88 views

Dynamically mixin a base class to an instance in Python

Is it possible to add a base class to an object instance (not a class!) at runtime? Something along the lines of how Object#extend works in Ruby: class Gentleman(object): def introduce_self(self): ...
4
votes
1answer
172 views

ruby mixing and inheritance injection

I need to inject a callbacks in every child class of a Parent class. So, method with callbacks must be called first, and all present chain later: it is possible to achive thought alias_method (or ...
4
votes
1answer
120 views

D mixins with string switch statements

I have a D mixin that I'd like to use to generate a switch statement (case values, specifically) on string values, but despite KeyValues having entries in it and providing the right key values, the ...
4
votes
3answers
84 views

Mixins with variable number of string arguments in D?

I'm working on some D bindings for an existing C library, and I have a bunch of function definitions, and a bunch of bindings for them. For example: // Functions void function(int) funcA; long ...
4
votes
2answers
123 views

Do rubyists reference accessors from mixins?

Is it considered bad practice to reference accessors on the extended object from within a mixin method? A simplistic example: module WindInstrument def play mouthpiece.blow #requires a ...
4
votes
6answers
445 views

Diamond problem when using MixIns in Python

Please consider the following code implementing a simple MixIn: class Story(object): def __init__(self, name, content): self.name = name self.content = content class ...
4
votes
1answer
510 views

Groovy Mixin on Instance (Dynamic Mixin)

I'm trying to achieve following: class A { def foo() { "foo" } } class B { def bar() { "bar" } } A.mixin B def a = new A() a.foo() + a.bar() with one significant difference - I would like to ...
4
votes
2answers
743 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. ...
4
votes
5answers
1k 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 ...
4
votes
4answers
4k 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 { ...
3
votes
4answers
70 views

Should I prefer mixins or function templates to add behavior to a set of unrelated types?

Mixins and function templates are two different ways of providing a behavior to a wide set of types, as long as these types meet some requirements. For example, let's assume that I want to write some ...
3
votes
1answer
50 views

Difference between @Delegate and @Mixin AST transformations in Groovy

What's the difference between @Delegate and @Mixin AST transformations in Groovy. Maybe my question has to do with OO and when apply different patterns, but I use both and I can achieve the same ...
3
votes
1answer
68 views

How to create DLLAPI() template mixin in the D programming language that behaves similar to the well-known DLLAPI (or similar) macro in C/C++?

As most of you know, in C/C++ I would write a macro similar to this one when I deal with dynamic libraries. #ifdef _WIN32 # define DLLAPI __declspec(dllimport) #else # define DLLAPI #endif What I ...
3
votes
2answers
168 views

How to include a module in a factory_girl factory?

I'm trying to reuse a helper method in all my factories, however I cannot get it to work. Here's my setup: Helper module (in spec/support/test_helpers.rb) module Tests module Helpers # not ...
3
votes
1answer
60 views

Using a mixin (?) to make stream i/o easier

Since many students I work with on common code have some problems comprehending proper stream operator overloading, I tried to create a helper template (don't know if this is a real mixin) to ...
3
votes
2answers
166 views

Radial gradient mixin in LESS isn't working?

If you are familiar with less, could you help me with this problem? I am creating a radial gradient mixin for just a quick test case. However both are not working? .radialGradient(@posX:center ...
3
votes
2answers
109 views

Why use object inheritance instead of mixins

gist What are the reasons to favour inheritance over mixins Given the following psuedo-code example : class Employee class FullTimeEmployee inherits Employee class PartTimeEmployee inherits ...
3
votes
1answer
159 views

Python MixIn standards

So I'm writing some code and have recently come across the need to implement a few mixins. My question is, what is the proper way to design a mix-in? I'll use the example code below to illustrate my ...
3
votes
1answer
468 views

Ruby: Mixin which adds dynamic instance methods whose names are created using a class method

I have the following: module Thing def self.included(base) base.send :extend, ClassMethods end module ClassMethods attr_reader :things def has_things(*args) options = ...
3
votes
1answer
340 views

How to dynamically add a route to a scoped resource in Rails3?

right now I am trying to generalize some of my code. So far it went well, I wrote a few mixins which I can dynamically add to Controllers or Models in order to get things done while obeying DRY. But ...

1 2 3 4