All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dc10.File.scala Maven / Gradle / Ivy

The newest version!
package dc10

import java.nio.file.Path

case class File[A](path: Path, contents: List[A])
object File:

  extension [A] (file: File[A])
    def addParent(path: Path): File[A] =
      file.copy(path = path.resolve(file.path))

case class VirtualFile(path: Path, contents: String)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy