 5978a0b8f5
			
		
	
	5978a0b8f5
	
	
	
		
			
			- Agent roles and coordination features - Chat API integration testing - New configuration and workspace management 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			377 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			377 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //go:build amd64 && !appengine && !noasm && gc
 | |
| // +build amd64,!appengine,!noasm,gc
 | |
| 
 | |
| // Copyright 2019+ Klaus Post. All rights reserved.
 | |
| // License information can be found in the LICENSE file.
 | |
| 
 | |
| package zstd
 | |
| 
 | |
| // matchLen returns how many bytes match in a and b
 | |
| //
 | |
| // It assumes that:
 | |
| //
 | |
| //	len(a) <= len(b) and len(a) > 0
 | |
| //
 | |
| //go:noescape
 | |
| func matchLen(a []byte, b []byte) int
 |