exec_algo_tt: Execute a truth table algorithm on a given input.

Description Usage Arguments Value Examples

Description

...

Usage

1
exec_algo_tt(algo, input = NULL, ...)

Arguments

algo

A truth table algorithm (R6 Class algo_tt)

input

The input bits (logical vector | character vector of "0"s and "1"s | R6 Class BinaryNumber)

Value

The corresponding output (same type than input)

Examples

1
2
3
4
5
# R function style:
exec_algo_tt(algo, input);

# R6 method style:
algo$exec(input);

daviddoret/haricot documentation built on May 21, 2019, 1:42 a.m.