turbo 0.4.2

A library of convolutional encoder/decoders.
1
2
3
4
5
6
7
use encoders::Code;

pub trait MLDecoder {}
pub trait MAPDecoder {}

impl<T> MLDecoder for FIRCode<T> {}
impl<T> MAPDecoder for FIRCode<T> {}