Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isASCIILower (0.16 sec)

  1. pkg/util/strcase/camelcase_test.go

    			want: false,
    		},
    		{
    			name: "b",
    			c:    'b',
    			want: true,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := isASCIILower(tt.c); got != tt.want {
    				t.Errorf("isASCIILower() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    func Test_isASCIIDigit(t *testing.T) {
    	tests := []struct {
    		name string
    		c    byte
    		want bool
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top