func (d *RecordDAWG) Get(key string) ([][]uint16, bool) {
    index, ok := d.followKey([]byte(key))
    if !ok {
        return [][]uint16{}, false
    }