RobertDober/lab42_core

View on GitHub
lib/lab42/core/b.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'lab42/core/fn'
require_relative 'behavior'

def B msg, *a, &b
  Lab42::Behavior::SendBehavior.new msg, *a, &b
end

Identity = Lab42::Behavior::ProcBehavior.new{ |x| x }
# SPDX-License-Identifier: Apache-2.0