This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package lesson7 | |
| import cats.{Endo, Monoid, MonoidK} | |
| import cats.instances.function._ | |
| import cats.syntax.monoid._ | |
| import lesson7.Foldable._ | |
| import cats.syntax.option._ | |
| trait Foldable[F[_]] { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <h1>${message}</h1> | |
| </template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import javax.xml.bind.annotation._ | |
| @XmlRootElement(name = "person") | |
| @XmlAccessorType(XmlAccessType.FIELD) | |
| case class Person(fullname: String, username: Option[String], age: Int) |