euphony 0.1.1

music composition environment for programmers
Documentation
1
2
3
4
5
use crate::value::Parameter;

pub trait Set<K> {
    fn set<V: Into<Parameter>>(&self, k: K, v: V) -> &Self;
}