Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for joinStates (0.16 sec)

  1. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    		}
    		i += sz
    	}
    	return nil
    }
    
    const (
    	zwnj = "\u200c"
    	zwj  = "\u200d"
    )
    
    type joinState int8
    
    const (
    	stateStart joinState = iota
    	stateVirama
    	stateBefore
    	stateBeforeVirama
    	stateAfter
    	stateFAIL
    )
    
    var joinStates = [][numJoinTypes]joinState{
    	stateStart: {
    		joiningL:   stateBefore,
    		joiningD:   stateBefore,
    		joinZWNJ:   stateFAIL,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    		}
    		i += sz
    	}
    	return nil
    }
    
    const (
    	zwnj = "\u200c"
    	zwj  = "\u200d"
    )
    
    type joinState int8
    
    const (
    	stateStart joinState = iota
    	stateVirama
    	stateBefore
    	stateBeforeVirama
    	stateAfter
    	stateFAIL
    )
    
    var joinStates = [][numJoinTypes]joinState{
    	stateStart: {
    		joiningL:   stateBefore,
    		joiningD:   stateBefore,
    		joinZWNJ:   stateFAIL,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top