mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	 12dc24f460
			
		
	
	
		12dc24f460
		
	
	
	
	
		
			
			This commit is a response to feedback on the displayed type signatures results, by making generics act stricter. Generics are tightened by making order significant. This means `Vec<Allocator>` now matches only with a true vector of allocators, instead of matching the second type param. It also makes unboxing within generics stricter, so `Result<A, B>` only matches if `B` is in the error type and `A` is in the success type. The top level of the function search is unaffected. Find the discussion on: * <https://rust-lang.zulipchat.com/#narrow/stream/393423-t-rustdoc.2Fmeetings/topic/meeting.202024-07-08/near/449965149> * <https://github.com/rust-lang/rust/pull/124544#issuecomment-2204272265> * <https://rust-lang.zulipchat.com/#narrow/channel/266220-t-rustdoc/topic/deciding.20on.20semantics.20of.20generics.20in.20rustdoc.20search/near/476841363>
		
			
				
	
	
		
			81 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // exact-check
 | |
| 
 | |
| const EXPECTED = [
 | |
|     {
 | |
|         'query': '()',
 | |
|         'returned': [
 | |
|             { 'path': 'tuple_unit', 'name': 'side_effect' },
 | |
|             { 'path': 'tuple_unit', 'name': 'one' },
 | |
|             { 'path': 'tuple_unit', 'name': 'two' },
 | |
|             { 'path': 'tuple_unit', 'name': 'nest' },
 | |
|         ],
 | |
|         'in_args': [],
 | |
|     },
 | |
|     {
 | |
|         'query': 'primitive:unit',
 | |
|         'returned': [
 | |
|             { 'path': 'tuple_unit', 'name': 'side_effect' },
 | |
|         ],
 | |
|         'in_args': [],
 | |
|     },
 | |
|     {
 | |
|         'query': 'primitive:tuple',
 | |
|         'returned': [
 | |
|             { 'path': 'tuple_unit', 'name': 'one' },
 | |
|             { 'path': 'tuple_unit', 'name': 'two' },
 | |
|             { 'path': 'tuple_unit', 'name': 'nest' },
 | |
|         ],
 | |
|         'in_args': [],
 | |
|     },
 | |
|     {
 | |
|         'query': '(P)',
 | |
|         'returned': [
 | |
|             { 'path': 'tuple_unit', 'name': 'not_tuple' },
 | |
|             { 'path': 'tuple_unit', 'name': 'one' },
 | |
|             { 'path': 'tuple_unit', 'name': 'two' },
 | |
|         ],
 | |
|         'in_args': [],
 | |
|     },
 | |
|     {
 | |
|         'query': '(P,)',
 | |
|         'returned': [
 | |
|             { 'path': 'tuple_unit', 'name': 'one' },
 | |
|             { 'path': 'tuple_unit', 'name': 'two' },
 | |
|         ],
 | |
|         'in_args': [],
 | |
|     },
 | |
|     {
 | |
|         'query': '(P, P)',
 | |
|         'returned': [
 | |
|             { 'path': 'tuple_unit', 'name': 'two' },
 | |
|         ],
 | |
|         'in_args': [],
 | |
|     },
 | |
|     {
 | |
|         'query': '(P, ())',
 | |
|         'returned': [],
 | |
|         'in_args': [],
 | |
|     },
 | |
|     {
 | |
|         'query': '(Q, R<()>)',
 | |
|         'returned': [
 | |
|             { 'path': 'tuple_unit', 'name': 'nest' },
 | |
|         ],
 | |
|         'in_args': [],
 | |
|     },
 | |
|     {
 | |
|         'query': '(R)',
 | |
|         'returned': [
 | |
|             { 'path': 'tuple_unit', 'name': 'nest' },
 | |
|         ],
 | |
|         'in_args': [],
 | |
|     },
 | |
|     {
 | |
|         'query': 'R<(u32)>',
 | |
|         'returned': [
 | |
|             { 'path': 'tuple_unit', 'name': 'nest' },
 | |
|         ],
 | |
|         'in_args': [],
 | |
|     },
 | |
| ];
 |