Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cleanUpDeletedRelations (0.14 sec)

  1. association.go

    					}
    				}
    			}
    
    			switch reflectValue.Kind() {
    			case reflect.Slice, reflect.Array:
    				for i := 0; i < reflectValue.Len(); i++ {
    					cleanUpDeletedRelations(reflect.Indirect(reflectValue.Index(i)))
    				}
    			case reflect.Struct:
    				cleanUpDeletedRelations(reflectValue)
    			}
    		}
    	}
    
    	return association.Error
    }
    
    func (association *Association) Clear() error {
    	return association.Replace()
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Sun Oct 26 12:09:12 UTC 2025
    - 23.6K bytes
    - Viewed (0)
Back to top