You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

YitIdHelper.v 166 B

4 years ago
123456789101112
  1. module gen
  2. import contract
  3. pub struct YitIdHelper {
  4. mut:
  5. id_gen contract.IIdGenerator
  6. }
  7. pub fn (yih &YitIdHelper) next_id() u64 {
  8. return yih.id_gen.new_long()
  9. }

雪花算法中非常好用的数字ID生成器