Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6100921
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:26:28+00:00 2026-05-23T13:26:28+00:00

Is it possible to have angle brackets in method names , e.g. : class

  • 0

Is it possible to have angle brackets in method names , e.g. :

class Foo(ind1:Int,ind2:Int){...}
var v = new Foo(1,2)
v(1) = 3 //updates ind1
v<1> = 4 //updates ind2

The real situation is obviously more complicated than this!!I am trying to provide a convenient user interface.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T13:26:29+00:00Added an answer on May 23, 2026 at 1:26 pm

    This response is not meant to be taken too seriously – just a proof that this can almost be achieved using some hacks.

    class Vector(values: Int*) {
      val data = values.toArray
      def < (i:Int) = new {
        def `>_=`(x: Int) {
          data(i) = x
        }
        def > {
          println("value at "+ i +" is "+ data(i))
        }
      }
      override def toString = data.mkString("<", ", ", ">")
    }
    
    val v = new Vector(1, 2, 3)
    println(v) // prints <1, 2, 3>
    v<1> = 10
    println(v) // prints <1, 10, 3>
    v<1> // prints: value at 1 is 10
    

    Using this class we can have a vector that uses <> instead of () for "read" and write access.
    The compiler (2.9.0.1) crashes if > returns a value. It might be a bug or a result of misusing >.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some images to rotate. I must rotate them (each by different angle)
I have a web app based on MVC3 (no beta or release candidate, RTM/RTW
I have a rather old website that I've fed up refactoring so I'm rebuilding.
I have gone through all available study resources in the internet as much as
I have a SQL 2005 instance that runs a job that uses a Powershell
here's a very simple js but i don't know where to begin. in a
I would like to understand the programmatic way of finding out(logging) IP address &
We generate lots of JSON objects using Spring and its built-in MappingJacksonHttpMessageConverter . All
In 3D Max Studios, I recalled there is a function (I couldn't recall the
I was surfing the net looking for a nice effect for turning pages on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.