Update subtyping.md

pull/464/head
nomicon-kr 9 months ago committed by GitHub
parent c8d79fcd78
commit 2646066d44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -109,19 +109,15 @@ fn main() {
> 주의: 편의를 위해 우리는 제네릭 타입을 `F<T>`로 정의하여 `T`에 대해 쉽게 말할 것입니다. 이것이 문맥에서 잘 드러나길 바랍니다.
타입 `F`*변성* 그 입력들의 부분타입 다형성이 출력들의 부분타입 다형성에 어떻게 영향을 주느냐 하는 것입니다. 러스트에서는 세 가지 종류의 변성이 있습니다. 두 타입 `Sub``Super`가 있고, `Sub``Super`의 부분타입일 때:
* `F<Sub>``F<Super>`의 부분타입일 경우 `F`**공변(共變)합니다** (부분타입 특성이 전달됩니다)
* `F<Super>``F<Sub>`의 부분타입일 경우 `F`**반변(反變)합니다** (부분타입 특성이 "뒤집힙니다")
* 그 외에는 `F`**무변(無變)합니다** (부분타입 관계가 존재하지 않습니다)
The type `F`'s *variance* is how the subtyping of its inputs affects the
subtyping of its outputs. There are three kinds of variance in Rust. Given two
types `Sub` and `Super`, where `Sub` is a subtype of `Super`:
우리가 위의 예제에서 기억한다면, `'a <: 'b`일 경우 `&'a T``&'b T`의 부분타입으로 다뤄도 되었으니, `&'a T``'a`에 대해서 *공변하는* 것이군요.
* `F` is **covariant** if `F<Sub>` is a subtype of `F<Super>` (the subtype property is passed through)
* `F` is **contravariant** if `F<Super>` is a subtype of `F<Sub>` (the subtype property is "inverted")
* `F` is **invariant** otherwise (no subtyping relationship exists)
If we remember from the above examples,
it was ok for us to treat `&'a T` as a subtype of `&'b T` if `'a <: 'b`,
therefore we can say that `&'a T` is *covariant* over `'a`.
Also, we saw that it was not ok for us to treat `&mut &'a U` as a subtype of `&mut &'b U`,
therefore we can say that `&mut T` is *invariant* over `T`

Loading…
Cancel
Save