PrivateAccessProxy

Helper mixin to support private member functions for @before attributes.

mixin template PrivateAccessProxy () {}

Members

Functions

invokeProxy__
auto invokeProxy__(ARGS args)
Undocumented in source. Be warned that the author may not have intended to support it.

Examples

class MyClass {
	@before!computeParam("param")
	void method(bool param)
	{
		assert(param == true);
	}

	private bool computeParam()
	{
		return true;
	}
}

Meta