You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 31, 2025. It is now read-only.
E.g. we have a pb1 = ParserBuilder<number> and a pb2 = ParserBuilder<number[]>. We can make pb2 to use pb1 with a bridge which convert number to a number[].
Besides, we can also bridge type name, in this case we can use 3rd party ParserBuilders.
E.g. we have a
pb1 = ParserBuilder<number>and apb2 = ParserBuilder<number[]>. We can makepb2to usepb1with a bridge which convertnumberto anumber[].Besides, we can also bridge type name, in this case we can use 3rd party ParserBuilders.