Delegator

build

Delegate functions and macros in bulk.

Delegator extends Elixir's built-in delegation mechanism with powerful options for delegating multiple functions and macros at once, with flexible naming and filtering options.

Features

Installation

Add Delegator to your mix.exs dependencies:

def deps do
  [
    {:delegator, "0.2.0"}
  ]
end

Then run mix deps.get.

Usage

Use Delegator's macros to delegate a module's functions and macros.

defmodule MyModule do
  import Delegator
  
  # Delegate a single macro
  defdelegatemacro m(x, y, z), to: TargetModule
  
  # Delegate all functions/macros
  defdelegateall to: FunctionsModule
  defdelegateallmacros to: MacrosModule
  
  # Delegate everything (similar to use Delegator with a single module)
  defdelegateeverything to: SuperModule
end

See the shared options documentation for more ways to customise these delegations.

Acknowledgements

Inspired by delegate.

License

Copyright 2026 Pedro Costa

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.