Skip to content

Commit

Permalink
Release 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jongiddy committed Apr 16, 2024
1 parent b56cdb4 commit 5667e42
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typle"
version = "0.10.0"
version = "0.10.1"
edition = "2021"
description = "Generic tuple bounds and transformations"
license = "MIT"
Expand Down
12 changes: 6 additions & 6 deletions tests/compile/mod.expanded.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2051,7 +2051,7 @@ pub mod typle_fold {
where
T0: UsefulTrait,
{
type UsefulType = T0::UsefulType;
type UsefulType = <T0>::UsefulType;
const SIZE: usize = loop {
let total = 0;
let total = total + <T0>::SIZE;
Expand All @@ -2062,9 +2062,9 @@ pub mod typle_fold {
where
T0: UsefulTrait,
T1: UsefulTrait,
<T1>::UsefulType: IsUseful<T0::UsefulType>,
<T1>::UsefulType: IsUseful<<T0>::UsefulType>,
{
type UsefulType = <<T1>::UsefulType as IsUseful<T0::UsefulType>>::State;
type UsefulType = <<T1>::UsefulType as IsUseful<<T0>::UsefulType>>::State;
const SIZE: usize = loop {
let total = 0;
let total = total + <T0>::SIZE;
Expand All @@ -2077,13 +2077,13 @@ pub mod typle_fold {
T0: UsefulTrait,
T1: UsefulTrait,
T2: UsefulTrait,
<T1>::UsefulType: IsUseful<T0::UsefulType>,
<T1>::UsefulType: IsUseful<<T0>::UsefulType>,
<T2>::UsefulType: IsUseful<
<<T1>::UsefulType as IsUseful<T0::UsefulType>>::State,
<<T1>::UsefulType as IsUseful<<T0>::UsefulType>>::State,
>,
{
type UsefulType = <<T2>::UsefulType as IsUseful<
<<T1>::UsefulType as IsUseful<T0::UsefulType>>::State,
<<T1>::UsefulType as IsUseful<<T0>::UsefulType>>::State,
>>::State;
const SIZE: usize = loop {
let total = 0;
Expand Down

0 comments on commit 5667e42

Please sign in to comment.