aboutsummaryrefslogtreecommitdiff
path: root/src/transform.rs
AgeCommit message (Expand)Author
2021-11-22support other collections via #[collection(...)]Martin Fischer
2021-11-22better errors for type arguments of collectionsMartin Fischer
2021-11-22make convert_type skip non-type genericsMartin Fischer
2021-11-22refactor: make MethodError wrap TransformErrorMartin Fischer
2021-11-22refactor: move Span out of TransformError enumMartin Fischer
2021-11-22simplify MethodError variantsMartin Fischer
2021-11-22rename MethodParseError to MethodErrorMartin Fischer
2021-11-22refactor: support IntoIterMapCollect with N typesMartin Fischer
2021-11-22generalize to collection with one type / two typesMartin Fischer
2021-11-22rename AssocTypeConversions to TypeConverterMartin Fischer
2021-11-22support HashMap and BTreeMapMartin Fischer
2021-11-22refactor: make type conversion function more DRYMartin Fischer
2021-11-22refactor: change x.first().unwrap() to x[0]Martin Fischer
2021-11-22support HashSet, BinaryHeap and BTreeSetMartin Fischer
2021-11-22support Vec, VecDeque & LinkedList collectionsMartin Fischer
2021-11-22fix unconvertible type error spanMartin Fischer
2021-11-21support boxed Iterator in OptionMartin Fischer
2021-11-21support -> &mut dyn Iterator<Item = Self::A>Martin Fischer
2021-11-21better errors for assoc types in where clausesMartin Fischer
2021-11-21also dynamize simple type param bounds in where clausesMartin Fischer
2021-11-20refactor: traverse AST via iteratorsMartin Fischer
2021-11-20refactor: remove now pointless internal traitMartin Fischer
2021-11-20refactor: use syn::Generics::type_params iteratorsMartin Fischer
2021-11-19refactor: make destination type mechanism extensibleMartin Fischer
2021-11-19refactor: forward type param transforms as HashMapMartin Fischer
2021-11-19refactor: factor out transform moduleMartin Fischer