Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ListNum (0.08 sec)

  1. test/typeparam/listimp.dir/a.go

    		~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
    		~float32 | ~float64
    }
    
    // ListNum is a linked _List of ordered numeric values of type T.
    type ListNum[T OrderedNum] struct {
    	Next *ListNum[T]
    	Val  T
    }
    
    const Clip = 5
    
    // ClippedLargest returns the largest in the list of OrderNums, but a max of 5.
    func (l *ListNum[T]) ClippedLargest() T {
    	var max T
    	for p := l; p != nil; p = p.Next {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. src/main/webapp/js/suggestor.js

                        }
                      );
    
                      $liEle.css("padding", "2px");
    
                      $olEle.append($liEle);
                      listNum++;
                    }
                  }
    
                  if (listNum > 0 && $textArea.val().length >= settingMinTerm) {
                    $boxElement.html("");
                    $boxElement.append($olEle);
                    $boxElement.css("display", "block");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top