mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 07:40:56 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			399 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			399 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cloud .
 | 
						|
 | 
						|
package kvstore
 | 
						|
 | 
						|
import "github.com/cockroachdb/pebble"
 | 
						|
 | 
						|
type IteratorOptions struct {
 | 
						|
	LowerBound []byte
 | 
						|
	UpperBound []byte
 | 
						|
}
 | 
						|
 | 
						|
func (this *IteratorOptions) RawOptions() *pebble.IterOptions {
 | 
						|
	return &pebble.IterOptions{
 | 
						|
		LowerBound: this.LowerBound,
 | 
						|
		UpperBound: this.UpperBound,
 | 
						|
	}
 | 
						|
}
 |