Zulip Chat Archive
Stream: Is there code for X?
Topic: the category of sets
Dean Young (Nov 17 2023 at 07:56):
Is there code for the category of sets? I mean I want a type like this:
def 𝕊𝕖𝕥 : Category Type := by
sorry
so it would have an entry Type as 𝕊𝕖𝕥.α
and make use of math lib's categories.
Kyle Miller (Nov 17 2023 at 08:02):
Yes, Type
forms a large category. docs#CategoryTheory.types
(It's also a concrete category, with the forgetful functor being the identity functor. docs#CategoryTheory.ConcreteCategory.types)
Last updated: Dec 20 2023 at 11:08 UTC