1 //! method combinators
2 
3 /// do not use: method combinators moved to the nom-methods crate
4 #[macro_export]
5 macro_rules! method (
6   ($($args:tt)*) => (compile_error!("method combinators moved to the nom-methods crate"););
7 );
8 
9 /// do not use: method combinators moved to the nom-methods crate
10 #[macro_export]
11 macro_rules! call_m (
12   ($($args:tt)*) => (compile_error!("method combinators moved to the nom-methods crate"););
13 );
14 
15 /// do not use: method combinators moved to the nom-methods crate
16 #[macro_export]
17 macro_rules! apply_m (
18   ($($args:tt)*) => (compile_error!("method combinators moved to the nom-methods crate"););
19 );
20 
21