Is there a rewrite tactic in Isabelle?

Viewed 203

For example in Coq there is rewrite and we can also put arrows `<-:

Inductive bool: Set :=
  | true
  | false.

Lemma equality_of_functions_commutes:
  forall (f: bool->bool) x y,
    (f x) = (f y) -> (f y) = (f x).
Proof.
  intros.
  rewrite H.
  reflexivity.
Qed.

source: https://pjreddie.com/coq-tactics/#rewrite

1 Answers
Related